├── .circleci └── config.yml ├── .dockerignore ├── .env.example ├── .gitignore ├── .golangci.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── convert.go ├── cors.go ├── cors_test.go ├── datagram.go ├── docker-compose.yml ├── docs └── CodeStyleGuide.md ├── env.go ├── env_test.go ├── error_info.go ├── error_info_test.go ├── go.mod ├── go.sum ├── http_response_writer.go ├── http_response_writer_test.go ├── img ├── alchemist.svg ├── jsight-logo.svg ├── tab1.svg ├── tab2.svg ├── tab3.svg └── try-editor.svg ├── jdoc.go ├── jsight └── jsight-server-api.jst ├── main.go ├── main_test.go ├── openapi.go ├── statistics.go ├── statistics_test.go └── vendor ├── github.com ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── itchyny │ └── json2yaml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ └── json2yaml.go ├── jsightapi │ ├── datagram │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── datagram.go │ │ └── element.go │ ├── jsight-api-core │ │ ├── LICENSE │ │ ├── catalog │ │ │ ├── annotation.go │ │ │ ├── catalog.go │ │ │ ├── exchange_content.go │ │ │ ├── exchange_schema.go │ │ │ ├── exchange_schema_jsight.go │ │ │ ├── exchange_schema_pseudo.go │ │ │ ├── exchange_schema_regex.go │ │ │ ├── http_interaction.go │ │ │ ├── http_interaction_id.go │ │ │ ├── http_method.go │ │ │ ├── http_request.go │ │ │ ├── http_response.go │ │ │ ├── http_response_body.go │ │ │ ├── info.go │ │ │ ├── interaction.go │ │ │ ├── interaction_id.go │ │ │ ├── interactions.go │ │ │ ├── interactions_gen.go │ │ │ ├── json_rpc_interaction.go │ │ │ ├── json_rpc_interaction_id.go │ │ │ ├── object.go │ │ │ ├── object_builder.go │ │ │ ├── path.go │ │ │ ├── path_variables.go │ │ │ ├── path_variables_builder.go │ │ │ ├── prop.go │ │ │ ├── protocol.go │ │ │ ├── query.go │ │ │ ├── rule.go │ │ │ ├── rules.go │ │ │ ├── rules_builder.go │ │ │ ├── ser │ │ │ │ └── openapi │ │ │ │ │ ├── components.go │ │ │ │ │ ├── components_schemas.go │ │ │ │ │ ├── content.go │ │ │ │ │ ├── debug.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── header_object.go │ │ │ │ │ ├── info.go │ │ │ │ │ ├── media_type.go │ │ │ │ │ ├── media_type_object.go │ │ │ │ │ ├── openapi.go │ │ │ │ │ ├── operation.go │ │ │ │ │ ├── parameter_base.go │ │ │ │ │ ├── parameter_info.go │ │ │ │ │ ├── parameter_location.go │ │ │ │ │ ├── parameter_object.go │ │ │ │ │ ├── parameter_style.go │ │ │ │ │ ├── parameters.go │ │ │ │ │ ├── path_item.go │ │ │ │ │ ├── paths.go │ │ │ │ │ ├── request_body.go │ │ │ │ │ ├── response_headers.go │ │ │ │ │ ├── response_object.go │ │ │ │ │ ├── responses.go │ │ │ │ │ ├── schema_core_client.go │ │ │ │ │ ├── schema_object.go │ │ │ │ │ ├── schema_object_any.go │ │ │ │ │ ├── schema_object_any_of.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── strings.go │ │ │ │ │ └── tags.go │ │ │ ├── serialize_format.go │ │ │ ├── servers.go │ │ │ ├── servers_gen.go │ │ │ ├── setters.go │ │ │ ├── string_set.go │ │ │ ├── string_set_gen.go │ │ │ ├── tag.go │ │ │ ├── tag_http_interaction_group.go │ │ │ ├── tag_interaction_group.go │ │ │ ├── tag_json_rpc_interaction_group.go │ │ │ ├── tag_name.go │ │ │ ├── tags.go │ │ │ ├── tags_gen.go │ │ │ ├── user_rule.go │ │ │ ├── user_rules.go │ │ │ ├── user_rules_gen.go │ │ │ ├── user_schemas.go │ │ │ ├── user_schemas_gen.go │ │ │ ├── user_type.go │ │ │ ├── user_types.go │ │ │ └── user_types_gen.go │ │ ├── core │ │ │ ├── build_catalog.go │ │ │ ├── build_catalog_directives.go │ │ │ ├── collect_core_path.go │ │ │ ├── compile_catalog.go │ │ │ ├── compile_core.go │ │ │ ├── compile_core_macro.go │ │ │ ├── compile_core_paste.go │ │ │ ├── compile_core_rules.go │ │ │ ├── compile_core_tags.go │ │ │ ├── compile_core_user_types.go │ │ │ ├── const.go │ │ │ ├── context_processing.go │ │ │ ├── core.go │ │ │ ├── description.go │ │ │ ├── error.go │ │ │ ├── include.go │ │ │ ├── path_parameter.go │ │ │ ├── path_variable_piece.go │ │ │ ├── path_variables_schema.go │ │ │ ├── raw_path_variables.go │ │ │ ├── scan_project.go │ │ │ ├── scan_project_directive.go │ │ │ ├── simular_paths.go │ │ │ ├── used_user_types.go │ │ │ ├── user_schema_error.go │ │ │ ├── user_types.go │ │ │ └── validate_catalog.go │ │ ├── directive │ │ │ ├── coords.go │ │ │ ├── directive.go │ │ │ ├── directives.go │ │ │ ├── directives_gen.go │ │ │ ├── enumeration.go │ │ │ ├── error.go │ │ │ ├── http_method.go │ │ │ ├── http_response_code.go │ │ │ ├── json_rpc_method.go │ │ │ ├── parameter.go │ │ │ └── path.go │ │ ├── jerr │ │ │ ├── const.go │ │ │ ├── japi.go │ │ │ ├── location.go │ │ │ └── utils.go │ │ ├── kit │ │ │ └── japi.go │ │ ├── notation │ │ │ └── schema_notation.go │ │ └── scanner │ │ │ ├── constants.go │ │ │ ├── errors.go │ │ │ ├── lexeme-event-stack.go │ │ │ ├── lexeme-event.go │ │ │ ├── lexeme.go │ │ │ ├── scanner.go │ │ │ ├── stack.go │ │ │ ├── step-helpers.go │ │ │ ├── step-stack.go │ │ │ ├── steps-baseurl.go │ │ │ ├── steps-body.go │ │ │ ├── steps-comments.go │ │ │ ├── steps-description.go │ │ │ ├── steps-directive-annotation.go │ │ │ ├── steps-directive-parameters.go │ │ │ ├── steps-enum.go │ │ │ ├── steps-headers.go │ │ │ ├── steps-http-methods.go │ │ │ ├── steps-include.go │ │ │ ├── steps-info.go │ │ │ ├── steps-jsight.go │ │ │ ├── steps-macro.go │ │ │ ├── steps-method.go │ │ │ ├── steps-operationid.go │ │ │ ├── steps-params.go │ │ │ ├── steps-paste.go │ │ │ ├── steps-path.go │ │ │ ├── steps-protocol.go │ │ │ ├── steps-query.go │ │ │ ├── steps-request.go │ │ │ ├── steps-response-codes.go │ │ │ ├── steps-result.go │ │ │ ├── steps-schema-jsight.go │ │ │ ├── steps-schema-regex.go │ │ │ ├── steps-server.go │ │ │ ├── steps-tag.go │ │ │ ├── steps-tags.go │ │ │ ├── steps-title.go │ │ │ ├── steps-type.go │ │ │ ├── steps-url.go │ │ │ ├── steps-version.go │ │ │ └── steps.go │ └── jsight-schema-core │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── ast_node.go │ │ ├── ast_nodes_gen.go │ │ ├── bytes │ │ ├── byte.go │ │ ├── bytes.go │ │ ├── index.go │ │ └── json.go │ │ ├── document.go │ │ ├── errs │ │ ├── code.go │ │ ├── code_keeper.go │ │ └── err.go │ │ ├── fs │ │ └── file.go │ │ ├── generators.go │ │ ├── internal │ │ ├── ds │ │ │ └── stack.go │ │ └── sync │ │ │ ├── erronce.go │ │ │ └── pool.go │ │ ├── json │ │ ├── guess.go │ │ ├── json_type.go │ │ ├── number.go │ │ └── scanner.go │ │ ├── kit │ │ ├── error.go │ │ └── jschema_error.go │ │ ├── lexeme │ │ ├── lex_event_type.go │ │ ├── lex_event_type_string.go │ │ ├── lexeme_event.go │ │ └── lexeme_event_error.go │ │ ├── notations │ │ ├── jschema │ │ │ ├── checker │ │ │ │ ├── c.go │ │ │ │ ├── c_array.go │ │ │ │ ├── c_literal.go │ │ │ │ ├── c_mixed.go │ │ │ │ ├── c_object.go │ │ │ │ ├── check_recusrion.go │ │ │ │ ├── check_schema.go │ │ │ │ ├── list.go │ │ │ │ └── validate_literal_value.go │ │ │ ├── example.go │ │ │ ├── ischema │ │ │ │ ├── array_node.go │ │ │ │ ├── ast.go │ │ │ │ ├── base_node.go │ │ │ │ ├── constraint │ │ │ │ │ ├── ast.go │ │ │ │ │ ├── c_additional_properties.go │ │ │ │ │ ├── c_all_of.go │ │ │ │ │ ├── c_any.go │ │ │ │ │ ├── c_const.go │ │ │ │ │ ├── c_date.go │ │ │ │ │ ├── c_datetime.go │ │ │ │ │ ├── c_email.go │ │ │ │ │ ├── c_enum.go │ │ │ │ │ ├── c_exclusive_maximum.go │ │ │ │ │ ├── c_exclusive_minimum.go │ │ │ │ │ ├── c_max.go │ │ │ │ │ ├── c_max_items.go │ │ │ │ │ ├── c_max_length.go │ │ │ │ │ ├── c_min.go │ │ │ │ │ ├── c_min_items.go │ │ │ │ │ ├── c_min_length.go │ │ │ │ │ ├── c_nullable.go │ │ │ │ │ ├── c_optional.go │ │ │ │ │ ├── c_or.go │ │ │ │ │ ├── c_precision.go │ │ │ │ │ ├── c_regexp.go │ │ │ │ │ ├── c_required_keys.go │ │ │ │ │ ├── c_type.go │ │ │ │ │ ├── c_types_list.go │ │ │ │ │ ├── c_uri.go │ │ │ │ │ ├── c_uuid.go │ │ │ │ │ ├── constraint.go │ │ │ │ │ ├── type.go │ │ │ │ │ ├── type_string.go │ │ │ │ │ └── utils.go │ │ │ │ ├── constraints_gen.go │ │ │ │ ├── generators.go │ │ │ │ ├── ischema.go │ │ │ │ ├── literal_node.go │ │ │ │ ├── mixed_node.go │ │ │ │ ├── mixed_value_node.go │ │ │ │ ├── node.go │ │ │ │ ├── object_node.go │ │ │ │ ├── object_node_keys.go │ │ │ │ ├── type.go │ │ │ │ └── virtual_node_for_any.go │ │ │ ├── jschema.go │ │ │ ├── loader │ │ │ │ ├── compiler_all_of.go │ │ │ │ ├── compiler_basic.go │ │ │ │ ├── embedded_loader.go │ │ │ │ ├── embedded_loader_for_node.go │ │ │ │ ├── embedded_loader_for_rule.go │ │ │ │ ├── embedded_loader_for_rule_allof_value.go │ │ │ │ ├── embedded_loader_for_rule_enum_value.go │ │ │ │ ├── embedded_loader_for_rule_or_value.go │ │ │ │ ├── embedded_loader_for_rule_or_value_rule_set.go │ │ │ │ ├── loader.go │ │ │ │ ├── shortcut.go │ │ │ │ ├── tools.go │ │ │ │ └── unnamed.go │ │ │ ├── scanner │ │ │ │ ├── scanner.go │ │ │ │ └── scanner_annotations.go │ │ │ ├── string_set.go │ │ │ ├── string_set_gen.go │ │ │ ├── types.go │ │ │ └── user_types_collector.go │ │ └── regex │ │ │ └── regex.go │ │ ├── openapi │ │ ├── dereference.go │ │ ├── informer.go │ │ ├── internal │ │ │ ├── ast_node.go │ │ │ ├── jsoac │ │ │ │ ├── additional_properties.go │ │ │ │ ├── additional_properties_any_of_json_item.go │ │ │ │ ├── allof.go │ │ │ │ ├── any.go │ │ │ │ ├── array.go │ │ │ │ ├── array_items.go │ │ │ │ ├── const.go │ │ │ │ ├── description.go │ │ │ │ ├── enum.go │ │ │ │ ├── example.go │ │ │ │ ├── exclusive_maximum.go │ │ │ │ ├── exclusive_minimum.go │ │ │ │ ├── format.go │ │ │ │ ├── jsoac.go │ │ │ │ ├── max_items.go │ │ │ │ ├── max_length.go │ │ │ │ ├── maximum.go │ │ │ │ ├── min_items.go │ │ │ │ ├── min_length.go │ │ │ │ ├── minimum.go │ │ │ │ ├── multiple_of.go │ │ │ │ ├── node.go │ │ │ │ ├── null.go │ │ │ │ ├── nullable.go │ │ │ │ ├── number.go │ │ │ │ ├── oadtype.go │ │ │ │ ├── oadtype_string.go │ │ │ │ ├── object.go │ │ │ │ ├── object_properties.go │ │ │ │ ├── or.go │ │ │ │ ├── pattern.go │ │ │ │ ├── primitive.go │ │ │ │ ├── ref.go │ │ │ │ ├── user_type.go │ │ │ │ └── user_type_array.go │ │ │ ├── rsoac │ │ │ │ ├── pattern.go │ │ │ │ ├── regex_string.go │ │ │ │ └── rsoac.go │ │ │ └── tools.go │ │ ├── object_info.go │ │ ├── property_info.go │ │ ├── schema_info.go │ │ ├── schema_info_list.go │ │ ├── schema_info_type.go │ │ └── schema_object.go │ │ ├── panics │ │ └── panics.go │ │ ├── reader │ │ └── reader.go │ │ ├── rule_ast_nodes_gen.go │ │ ├── rules │ │ └── enum │ │ │ ├── enum.go │ │ │ ├── enum_item_value.go │ │ │ └── scanner.go │ │ ├── schema.go │ │ └── type.go ├── lucasjones │ └── reggen │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ └── reggen.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go └── stretchr │ └── testify │ ├── LICENSE │ ├── assert │ ├── assertion_compare.go │ ├── assertion_format.go │ ├── assertion_format.go.tmpl │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertion_order.go │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go │ └── require │ ├── doc.go │ ├── forward_requirements.go │ ├── require.go │ ├── require.go.tmpl │ ├── require_forward.go │ ├── require_forward.go.tmpl │ └── requirements.go ├── gopkg.in └── yaml.v3 │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/README.md -------------------------------------------------------------------------------- /convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/convert.go -------------------------------------------------------------------------------- /cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/cors.go -------------------------------------------------------------------------------- /cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/cors_test.go -------------------------------------------------------------------------------- /datagram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/datagram.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CodeStyleGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/docs/CodeStyleGuide.md -------------------------------------------------------------------------------- /env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/env.go -------------------------------------------------------------------------------- /env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/env_test.go -------------------------------------------------------------------------------- /error_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/error_info.go -------------------------------------------------------------------------------- /error_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/error_info_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/go.sum -------------------------------------------------------------------------------- /http_response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/http_response_writer.go -------------------------------------------------------------------------------- /http_response_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/http_response_writer_test.go -------------------------------------------------------------------------------- /img/alchemist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/img/alchemist.svg -------------------------------------------------------------------------------- /img/jsight-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/img/jsight-logo.svg -------------------------------------------------------------------------------- /img/tab1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/img/tab1.svg -------------------------------------------------------------------------------- /img/tab2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/img/tab2.svg -------------------------------------------------------------------------------- /img/tab3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/img/tab3.svg -------------------------------------------------------------------------------- /img/try-editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/img/try-editor.svg -------------------------------------------------------------------------------- /jdoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/jdoc.go -------------------------------------------------------------------------------- /jsight/jsight-server-api.jst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/jsight/jsight-server-api.jst -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/main_test.go -------------------------------------------------------------------------------- /openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/openapi.go -------------------------------------------------------------------------------- /statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/statistics.go -------------------------------------------------------------------------------- /statistics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/statistics_test.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/itchyny/json2yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/itchyny/json2yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/itchyny/json2yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/itchyny/json2yaml/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/itchyny/json2yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/itchyny/json2yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/itchyny/json2yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/itchyny/json2yaml/Makefile -------------------------------------------------------------------------------- /vendor/github.com/itchyny/json2yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/itchyny/json2yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/itchyny/json2yaml/json2yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/itchyny/json2yaml/json2yaml.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/datagram/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/datagram/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/datagram/Makefile -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/datagram/README.md -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/datagram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/datagram/datagram.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/datagram/element.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/datagram/element.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/annotation.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/catalog.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_content.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema_jsight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema_jsight.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema_pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema_pseudo.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema_regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/exchange_schema_regex.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/http_interaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/http_interaction.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/http_interaction_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/http_interaction_id.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/http_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/http_method.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/http_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/http_request.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/http_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/http_response.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/http_response_body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/http_response_body.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/interaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/interaction.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/interaction_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/interaction_id.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/interactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/interactions.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/interactions_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/interactions_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/json_rpc_interaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/json_rpc_interaction.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/json_rpc_interaction_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/json_rpc_interaction_id.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/object_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/object_builder.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/path.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/path_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/path_variables.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/path_variables_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/path_variables_builder.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/prop.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/protocol.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/query.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/rule.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/rules.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/rules_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/rules_builder.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/components.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/components_schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/components_schemas.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/content.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/debug.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/header_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/header_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/media_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/media_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/media_type_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/media_type_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/openapi.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/operation.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_base.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_location.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameter_style.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/parameters.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/path_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/path_item.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/paths.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/request_body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/request_body.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/response_headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/response_headers.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/response_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/response_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/responses.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_core_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_core_client.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_object_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_object_any.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_object_any_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/schema_object_any_of.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/server.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/strings.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/ser/openapi/tags.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/serialize_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/serialize_format.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/servers.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/servers_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/servers_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/setters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/setters.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/string_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/string_set.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/string_set_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/string_set_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tag.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tag_http_interaction_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tag_http_interaction_group.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tag_interaction_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tag_interaction_group.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tag_json_rpc_interaction_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tag_json_rpc_interaction_group.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tag_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tag_name.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tags.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/tags_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/tags_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_rule.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_rules.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_rules_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_rules_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_schemas.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_schemas_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_schemas_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_types.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/catalog/user_types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/catalog/user_types_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/build_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/build_catalog.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/build_catalog_directives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/build_catalog_directives.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/collect_core_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/collect_core_path.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_catalog.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_core.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_core_macro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_core_macro.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_core_paste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_core_paste.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_core_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_core_rules.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_core_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_core_tags.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/compile_core_user_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/compile_core_user_types.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/const.go: -------------------------------------------------------------------------------- 1 | package core 2 | 3 | const ( 4 | lastJSightVersion = "0.3" 5 | ) 6 | -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/context_processing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/context_processing.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/core.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/description.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/error.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/include.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/path_parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/path_parameter.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/path_variable_piece.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/path_variable_piece.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/path_variables_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/path_variables_schema.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/raw_path_variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/raw_path_variables.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/scan_project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/scan_project.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/scan_project_directive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/scan_project_directive.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/simular_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/simular_paths.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/used_user_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/used_user_types.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/user_schema_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/user_schema_error.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/user_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/user_types.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/core/validate_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/core/validate_catalog.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/coords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/coords.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/directive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/directive.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/directives.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/directives.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/directives_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/directives_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/enumeration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/enumeration.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/error.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/http_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/http_method.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/http_response_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/http_response_code.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/json_rpc_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/json_rpc_method.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/parameter.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/directive/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/directive/path.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/jerr/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/jerr/const.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/jerr/japi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/jerr/japi.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/jerr/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/jerr/location.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/jerr/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/jerr/utils.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/kit/japi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/kit/japi.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/notation/schema_notation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/notation/schema_notation.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/constants.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/errors.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/lexeme-event-stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/lexeme-event-stack.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/lexeme-event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/lexeme-event.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/lexeme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/lexeme.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/stack.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/step-helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/step-helpers.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/step-stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/step-stack.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-baseurl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-baseurl.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-body.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-body.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-comments.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-description.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-directive-annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-directive-annotation.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-directive-parameters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-directive-parameters.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-enum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-headers.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-http-methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-http-methods.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-include.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-include.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-jsight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-jsight.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-macro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-macro.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-method.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-operationid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-operationid.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-params.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-paste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-paste.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-path.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-protocol.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-query.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-request.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-response-codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-response-codes.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-result.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-schema-jsight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-schema-jsight.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-schema-regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-schema-regex.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-server.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-tag.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-tags.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-title.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-title.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-url.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps-version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps-version.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-api-core/scanner/steps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-api-core/scanner/steps.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/Makefile -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/README.md -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/ast_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/ast_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/ast_nodes_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/ast_nodes_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/bytes/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/bytes/byte.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/bytes/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/bytes/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/bytes/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/bytes/index.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/bytes/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/bytes/json.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/document.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/errs/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/errs/code.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/errs/code_keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/errs/code_keeper.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/errs/err.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/errs/err.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/fs/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/fs/file.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/generators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/generators.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/internal/ds/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/internal/ds/stack.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/internal/sync/erronce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/internal/sync/erronce.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/internal/sync/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/internal/sync/pool.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/json/guess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/json/guess.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/json/json_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/json/json_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/json/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/json/number.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/json/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/json/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/kit/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/kit/error.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/kit/jschema_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/kit/jschema_error.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/lexeme/lex_event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/lexeme/lex_event_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/lexeme/lex_event_type_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/lexeme/lex_event_type_string.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/lexeme/lexeme_event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/lexeme/lexeme_event.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/lexeme/lexeme_event_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/lexeme/lexeme_event_error.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_array.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_literal.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_mixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_mixed.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/c_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/check_recusrion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/check_recusrion.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/check_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/check_schema.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/list.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/validate_literal_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/checker/validate_literal_value.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/example.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/array_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/array_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/ast.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/base_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/base_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/ast.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_additional_properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_additional_properties.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_all_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_all_of.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_any.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_const.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_date.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_datetime.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_email.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_enum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_exclusive_maximum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_exclusive_maximum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_exclusive_minimum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_exclusive_minimum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_max.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_max_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_max_items.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_max_length.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_max_length.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_min.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_min.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_min_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_min_items.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_min_length.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_min_length.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_nullable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_nullable.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_optional.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_or.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_precision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_precision.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_regexp.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_required_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_required_keys.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_types_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_types_list.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_uri.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/c_uuid.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/constraint.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/type_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/type_string.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraint/utils.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraints_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/constraints_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/generators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/generators.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/ischema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/ischema.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/literal_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/literal_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/mixed_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/mixed_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/mixed_value_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/mixed_value_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/object_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/object_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/object_node_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/object_node_keys.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/virtual_node_for_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/ischema/virtual_node_for_any.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/jschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/jschema.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/compiler_all_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/compiler_all_of.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/compiler_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/compiler_basic.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_allof_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_allof_value.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_enum_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_enum_value.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_or_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_or_value.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_or_value_rule_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/embedded_loader_for_rule_or_value_rule_set.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/loader.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/shortcut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/shortcut.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/tools.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/unnamed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/loader/unnamed.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/scanner/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/scanner/scanner_annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/scanner/scanner_annotations.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/string_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/string_set.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/string_set_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/string_set_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/types.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/user_types_collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/jschema/user_types_collector.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/notations/regex/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/notations/regex/regex.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/dereference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/dereference.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/informer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/informer.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/ast_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/ast_node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/additional_properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/additional_properties.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/additional_properties_any_of_json_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/additional_properties_any_of_json_item.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/allof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/allof.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/any.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/array.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/array_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/array_items.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/const.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/description.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/enum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/example.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/exclusive_maximum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/exclusive_maximum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/exclusive_minimum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/exclusive_minimum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/format.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/jsoac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/jsoac.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/max_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/max_items.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/max_length.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/max_length.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/maximum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/maximum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/min_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/min_items.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/min_length.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/min_length.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/minimum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/minimum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/multiple_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/multiple_of.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/node.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/null.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/nullable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/nullable.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/number.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/oadtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/oadtype.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/oadtype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/oadtype_string.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/object_properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/object_properties.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/or.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/pattern.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/primitive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/primitive.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/ref.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/user_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/user_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/user_type_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/jsoac/user_type_array.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/rsoac/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/rsoac/pattern.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/rsoac/regex_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/rsoac/regex_string.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/rsoac/rsoac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/rsoac/rsoac.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/internal/tools.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/object_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/object_info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/property_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/property_info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_info.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_info_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_info_list.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_info_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_info_type.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/openapi/schema_object.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/panics/panics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/panics/panics.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/reader/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/reader/reader.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/rule_ast_nodes_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/rule_ast_nodes_gen.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/rules/enum/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/rules/enum/enum.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/rules/enum/enum_item_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/rules/enum/enum_item_value.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/rules/enum/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/rules/enum/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/schema.go -------------------------------------------------------------------------------- /vendor/github.com/jsightapi/jsight-schema-core/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/jsightapi/jsight-schema-core/type.go -------------------------------------------------------------------------------- /vendor/github.com/lucasjones/reggen/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.5 5 | -------------------------------------------------------------------------------- /vendor/github.com/lucasjones/reggen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/lucasjones/reggen/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/lucasjones/reggen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/lucasjones/reggen/README.md -------------------------------------------------------------------------------- /vendor/github.com/lucasjones/reggen/reggen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/lucasjones/reggen/reggen.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertion_compare.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertion_order.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/forward_requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/forward_requirements.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/require.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/require.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/require_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/require_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/require/requirements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/github.com/stretchr/testify/require/requirements.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsightapi/jsight-server/HEAD/vendor/modules.txt --------------------------------------------------------------------------------