├── .gitattributes ├── .github ├── CODEOWNERS ├── assets │ └── speakeasy.png ├── dependabot.yml ├── scripts │ ├── README.md │ └── format-coverage.sh └── workflows │ ├── ci.yaml │ ├── commits.yml │ ├── coverage-comment.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── .golangci.yaml ├── .goreleaser.yaml ├── .mise.toml ├── .vscode └── settings.example.json ├── AGENTS.md ├── CODEOWNERS ├── LICENSE ├── README.md ├── arazzo ├── README.md ├── arazzo.go ├── arazzo_examples_test.go ├── arazzo_order_test.go ├── arazzo_test.go ├── components.go ├── core │ ├── arazzo.go │ ├── components.go │ ├── criterion.go │ ├── criterion_syncchanges_test.go │ ├── criterion_test.go │ ├── factory_registration.go │ ├── failureaction.go │ ├── info.go │ ├── outputs.go │ ├── parameter.go │ ├── payloadreplacement.go │ ├── requestbody.go │ ├── reusable.go │ ├── reusable_test.go │ ├── sourcedescription.go │ ├── step.go │ ├── successaction.go │ └── workflow.go ├── criterion │ ├── condition.go │ ├── condition_test.go │ ├── criterion.go │ ├── criterion_test.go │ ├── criterion_validate_test.go │ └── factory_registration.go ├── factory_registration.go ├── failureaction.go ├── info.go ├── outputs.go ├── parameter.go ├── payloadreplacement.go ├── requestbody.go ├── requestbody_test.go ├── reusable.go ├── reusable_test.go ├── sourcedescription.go ├── step.go ├── successaction.go ├── testdata │ ├── invalid.arazzo.yaml │ ├── ordering │ │ ├── addition.expected.arazzo.yaml │ │ ├── complex.expected.arazzo.yaml │ │ ├── deletion.expected.arazzo.yaml │ │ ├── input.arazzo.yaml │ │ ├── map-addition.expected.arazzo.yaml │ │ ├── map-deletion.expected.arazzo.yaml │ │ ├── map-reorder.expected.arazzo.yaml │ │ ├── map-stress.expected.arazzo.yaml │ │ └── reorder.expected.arazzo.yaml │ ├── simple.arazzo.yaml │ ├── speakeasybar.arazzo.yaml │ ├── test.arazzo.yaml │ └── traintravelapi.arazzo.yaml ├── walk.go ├── walk_test.go └── workflow.go ├── cache ├── example_test.go ├── manager.go └── manager_test.go ├── cmd ├── openapi │ ├── commands │ │ ├── arazzo │ │ │ ├── README.md │ │ │ ├── root.go │ │ │ └── validate.go │ │ ├── openapi │ │ │ ├── README.md │ │ │ ├── bootstrap.go │ │ │ ├── bundle.go │ │ │ ├── clean.go │ │ │ ├── explore.go │ │ │ ├── inline.go │ │ │ ├── join.go │ │ │ ├── localize.go │ │ │ ├── optimize.go │ │ │ ├── root.go │ │ │ ├── sanitize.go │ │ │ ├── shared.go │ │ │ ├── snip.go │ │ │ ├── upgrade.go │ │ │ └── validate.go │ │ ├── overlay │ │ │ ├── README.md │ │ │ ├── apply.go │ │ │ ├── compare.go │ │ │ ├── root.go │ │ │ ├── shared.go │ │ │ └── validate.go │ │ └── swagger │ │ │ ├── README.md │ │ │ └── root.go │ ├── go.mod │ ├── go.sum │ ├── internal │ │ └── explore │ │ │ ├── collector.go │ │ │ ├── collector_test.go │ │ │ ├── model.go │ │ │ └── tui │ │ │ ├── input.go │ │ │ ├── model.go │ │ │ ├── model_test.go │ │ │ ├── styles.go │ │ │ └── view.go │ └── main.go └── update-examples │ └── main.go ├── errors ├── errors.go └── errors_test.go ├── expression ├── core │ └── value.go ├── expression.go ├── expression_test.go ├── expressions.go ├── expressions_test.go ├── factory_registration.go └── value.go ├── extensions ├── core │ ├── extensions.go │ └── extensions_test.go ├── extensions.go ├── extensions_isequal_test.go ├── extensions_test.go └── factory_registration.go ├── go.mod ├── go.sum ├── go.work ├── hashing ├── hashing.go └── hashing_test.go ├── internal ├── interfaces │ ├── interfaces.go │ └── interfaces_test.go ├── testutils │ ├── utils.go │ └── utils_test.go └── utils │ ├── references.go │ ├── references_path_test.go │ ├── references_test.go │ ├── references_windows_test.go │ ├── slices.go │ ├── string_builder.go │ ├── string_builder_test.go │ ├── url_cache.go │ ├── url_cache_test.go │ ├── versions.go │ └── versions_test.go ├── json ├── json.go └── json_test.go ├── jsonpointer ├── embedded_map_test.go ├── jsonpointer.go ├── jsonpointer_test.go ├── map_index_key_test.go ├── models.go ├── models_test.go ├── models_yaml_fallback_test.go ├── navigation.go ├── yamlnode.go └── yamlnode_test.go ├── jsonschema └── oas3 │ ├── core │ ├── discriminator.go │ ├── externaldoc.go │ ├── factory_registration.go │ ├── jsonschema.go │ ├── jsonschema_test.go │ └── xml.go │ ├── defs_test.go │ ├── discriminator.go │ ├── discriminator_unmarshal_test.go │ ├── discriminator_validate_test.go │ ├── externaldoc.go │ ├── externaldoc_unmarshal_test.go │ ├── externaldoc_validate_test.go │ ├── factory_registration.go │ ├── inline.go │ ├── inline_stress_test.go │ ├── inline_test.go │ ├── inline_timeout_test.go │ ├── jsonschema.go │ ├── jsonschema_validate_test.go │ ├── resolution.go │ ├── resolution_external_ref_test.go │ ├── resolution_test.go │ ├── schema.go │ ├── schema30.json │ ├── schema31.base.json │ ├── schema31.json │ ├── schema_exclusive_validation_test.go │ ├── schema_isequal_test.go │ ├── schema_unmarshal_test.go │ ├── schema_validate_test.go │ ├── shallowcopy_test.go │ ├── testdata │ ├── circular2.yaml │ ├── complex_schema.yaml │ ├── defs_schema.json │ ├── external_defs.json │ ├── external_openapi.yaml │ ├── external_schema.json │ ├── non_standard.json │ ├── pagerduty.json │ ├── resolve_test_chained.yaml │ ├── resolve_test_external.yaml │ ├── resolve_test_main.yaml │ ├── simple_schema.yaml │ └── stresstest │ │ └── combinatorial.json │ ├── tests │ ├── go.mod │ ├── go.sum │ ├── remote_server.go │ └── testsuite_test.go │ ├── types.go │ ├── validation.go │ ├── value.go │ ├── walk.go │ ├── walk_test.go │ ├── xml.go │ ├── xml_unmarshal_test.go │ └── xml_validate_test.go ├── marshaller ├── coremodel.go ├── coremodel_jsonpath_test.go ├── coremodel_jsonpointer_test.go ├── empty_map_marshal_test.go ├── extensions.go ├── factory.go ├── factory_test.go ├── integration │ └── factory_integration_test.go ├── marshal.go ├── marshalling_test.go ├── model.go ├── model_test.go ├── node.go ├── node_test.go ├── populator.go ├── populator_test.go ├── populator_unmarshalextensionmodel_test.go ├── sequencedmap.go ├── sequencedmap_test.go ├── syncer.go ├── syncing_test.go ├── tests │ ├── core │ │ ├── factory_registration.go │ │ └── models.go │ ├── factory_registration.go │ └── models.go ├── unmarshaller.go └── unmarshalling_test.go ├── mise-tasks ├── build ├── ci ├── examples-check ├── fmt ├── fmt-check ├── lint ├── mod-check ├── mod-tidy ├── security ├── setup-submodules ├── test ├── test-cli ├── test-coverage └── update-examples ├── openapi ├── README.md ├── bootstrap.go ├── bootstrap_test.go ├── bundle.go ├── bundle_test.go ├── callbacks.go ├── callbacks_unmarshal_test.go ├── callbacks_validate_test.go ├── circular_marshalling_test.go ├── clean.go ├── clean_paths_reachability_test.go ├── clean_tags_test.go ├── clean_test.go ├── components.go ├── components_unmarshal_test.go ├── components_validate_test.go ├── core │ ├── callbacks.go │ ├── callbacks_test.go │ ├── components.go │ ├── encoding.go │ ├── example.go │ ├── factory_registration.go │ ├── header.go │ ├── info.go │ ├── link.go │ ├── mediatype.go │ ├── openapi.go │ ├── operation.go │ ├── parameter.go │ ├── paths.go │ ├── paths_test.go │ ├── reference.go │ ├── requests.go │ ├── responses.go │ ├── responses_test.go │ ├── security.go │ ├── security_test.go │ ├── server.go │ └── tag.go ├── encoding.go ├── encoding_unmarshal_test.go ├── encoding_validate_test.go ├── examples.go ├── examples_unmarshal_test.go ├── examples_validate_test.go ├── factory_registration.go ├── header.go ├── header_unmarshal_test.go ├── header_validate_test.go ├── info.go ├── info_unmarshal_test.go ├── info_validate_test.go ├── inline.go ├── inline_test.go ├── join.go ├── join_test.go ├── links.go ├── links_unmarshal_test.go ├── links_validate_test.go ├── localize.go ├── localize_test.go ├── marshalling.go ├── mediatype.go ├── mediatype_unmarshal_test.go ├── mediatype_validate_test.go ├── openapi.go ├── openapi_examples_test.go ├── openapi_getters_test.go ├── openapi_unmarshal_test.go ├── openapi_validate_test.go ├── operation.go ├── operation_unmarshal_test.go ├── operation_validate_test.go ├── optimize.go ├── optimize_test.go ├── parameter.go ├── parameter_unmarshal_test.go ├── parameter_validate_test.go ├── paths.go ├── paths_unmarshal_test.go ├── paths_validate_test.go ├── reference.go ├── reference_inline_test.go ├── reference_resolve_test.go ├── reference_unmarshal_test.go ├── reference_validate_test.go ├── requests.go ├── requests_unmarshal_test.go ├── requests_validate_test.go ├── responses.go ├── responses_unmarshal_test.go ├── responses_validate_test.go ├── sanitize.go ├── sanitize_test.go ├── security.go ├── security_unmarshal_test.go ├── security_validate_test.go ├── serialization.go ├── server.go ├── server_test.go ├── server_unmarshal_test.go ├── server_validate_test.go ├── snip.go ├── snip_test.go ├── tag.go ├── tag_unmarshal_test.go ├── tag_validate_test.go ├── testdata │ ├── bootstrap_expected.yaml │ ├── bundle │ │ └── issue50 │ │ │ ├── actual.yaml │ │ │ ├── common.yaml │ │ │ ├── country.yaml │ │ │ ├── expected.yaml │ │ │ └── test │ │ │ └── testapi.yaml │ ├── clean │ │ ├── clean_empty_expected.yaml │ │ ├── clean_empty_input.yaml │ │ ├── clean_expected.yaml │ │ └── clean_input.yaml │ ├── inline │ │ ├── bundled_counter_expected.yaml │ │ ├── bundled_expected.yaml │ │ ├── bundled_sibling_expected.yaml │ │ ├── common │ │ │ └── openapi.yaml │ │ ├── external │ │ │ └── parameters.yaml │ │ ├── external_api.yaml │ │ ├── external_conflicting_user.yaml │ │ ├── external_post.yaml │ │ ├── external_simple_schema.yaml │ │ ├── external_user.yaml │ │ ├── external_user_preferences.yaml │ │ ├── external_user_profile.yaml │ │ ├── inline_expected.yaml │ │ ├── inline_input.yaml │ │ ├── inlined_sibling_expected.yaml │ │ ├── test │ │ │ └── openapi.yaml │ │ └── testdata │ │ │ └── test.openapi.yaml │ ├── invalid.openapi.yaml │ ├── join │ │ ├── conflict_security.yaml │ │ ├── conflict_servers.yaml │ │ ├── joined_conflicts_expected.yaml │ │ ├── joined_counter_expected.yaml │ │ ├── joined_filepath_expected.yaml │ │ ├── main.yaml │ │ ├── subdir │ │ │ └── second.yaml │ │ └── third.yaml │ ├── localize │ │ ├── input │ │ │ ├── api │ │ │ │ └── components.yaml │ │ │ ├── components.yaml │ │ │ ├── schemas │ │ │ │ ├── address.yaml │ │ │ │ ├── category.yaml │ │ │ │ └── geo.yaml │ │ │ ├── shared │ │ │ │ └── address.yaml │ │ │ └── spec.yaml │ │ ├── output_counter │ │ │ ├── address.yaml │ │ │ ├── address_1.yaml │ │ │ ├── category.yaml │ │ │ ├── components.yaml │ │ │ ├── components_1.yaml │ │ │ ├── geo.yaml │ │ │ ├── metadata.yaml │ │ │ ├── openapi.yaml │ │ │ ├── user-preferences.yaml │ │ │ └── user-profile.yaml │ │ ├── output_pathbased │ │ │ ├── address.yaml │ │ │ ├── api-components.yaml │ │ │ ├── category.yaml │ │ │ ├── components.yaml │ │ │ ├── geo.yaml │ │ │ ├── metadata.yaml │ │ │ ├── openapi.yaml │ │ │ ├── shared-address.yaml │ │ │ ├── user-preferences.yaml │ │ │ └── user-profile.yaml │ │ └── remote │ │ │ └── schemas │ │ │ ├── metadata.yaml │ │ │ ├── user-preferences.yaml │ │ │ └── user-profile.yaml │ ├── optimize │ │ ├── optimize_actual.yaml │ │ ├── optimize_callback_actual.yaml │ │ ├── optimize_callback_expected.yaml │ │ ├── optimize_expected.yaml │ │ └── optimize_input.yaml │ ├── resolve_test │ │ ├── chained.yaml │ │ ├── circular.yaml │ │ ├── external.yaml │ │ ├── main.yaml │ │ ├── models.yaml │ │ └── schemas.json │ ├── sanitize │ │ ├── sanitize_expected.yaml │ │ ├── sanitize_input.yaml │ │ ├── sanitize_keep_components_expected.yaml │ │ ├── sanitize_keep_extensions_expected.yaml │ │ ├── sanitize_keep_extensions_input.yaml │ │ ├── sanitize_multi_pattern_expected.yaml │ │ ├── sanitize_multi_pattern_input.yaml │ │ ├── sanitize_no_extensions_input.yaml │ │ ├── sanitize_pattern_config.yaml │ │ ├── sanitize_pattern_expected.yaml │ │ └── sanitize_pattern_input.yaml │ ├── simple.openapi.yaml │ ├── snip │ │ ├── snip_expected.yaml │ │ └── snip_input.yaml │ ├── test.openapi.yaml │ ├── upgrade │ │ ├── 3_0_0.yaml │ │ ├── 3_0_2.json │ │ ├── 3_0_3.yaml │ │ ├── 3_1_0.yaml │ │ ├── edge_cases.yaml │ │ ├── expected_3_0_0_upgraded.yaml │ │ ├── expected_3_0_2_upgraded.json │ │ ├── expected_3_0_2_upgraded.yaml │ │ ├── expected_3_0_3_upgraded.yaml │ │ ├── expected_3_1_0_upgraded.yaml │ │ ├── expected_minimal_nullable_upgraded.json │ │ └── minimal_nullable.json │ └── walk.openapi.yaml ├── upgrade.go ├── upgrade_test.go ├── utils.go ├── utils_test.go ├── walk.go ├── walk_components.go ├── walk_matching.go ├── walk_operations_test.go ├── walk_schema.go ├── walk_security.go ├── walk_tags_servers.go ├── walk_test.go └── walk_webhooks_callbacks.go ├── overlay ├── README.md ├── apply.go ├── apply_test.go ├── compare.go ├── compare_test.go ├── jsonpath.go ├── loader │ ├── overlay.go │ ├── overlay_test.go │ ├── spec.go │ └── spec_test.go ├── overlay_examples_test.go ├── parents.go ├── parse.go ├── parse_test.go ├── schema.go ├── testdata │ ├── openapi-overlayed.yaml │ ├── openapi-strict-onechange.yaml │ ├── openapi.yaml │ ├── overlay-generated.yaml │ ├── overlay-mismatched.yaml │ ├── overlay-old.yaml │ ├── overlay-zero-change.yaml │ ├── overlay.yaml │ └── removeNote.yaml ├── utils.go └── validate.go ├── pointer ├── pointer.go └── pointer_test.go ├── references ├── factory_registration.go ├── reference.go ├── reference_test.go ├── resolution.go ├── resolution_cache.go ├── resolution_cache_test.go └── resolution_test.go ├── sequencedmap ├── map.go ├── map_advanced_test.go ├── map_getters_test.go ├── map_isequal_test.go ├── map_key_conversion_test.go ├── map_mutation_test.go ├── ordered_test.go ├── utils.go ├── utils_test.go └── yaml_unmarshal_test.go ├── swagger ├── core │ ├── externaldocs.go │ ├── factory_registration.go │ ├── info.go │ ├── operation.go │ ├── parameter.go │ ├── paths.go │ ├── reference.go │ ├── response.go │ ├── security.go │ ├── swagger.go │ └── tag.go ├── externaldocs.go ├── factory_registration.go ├── info.go ├── info_validate_test.go ├── marshalling.go ├── operation.go ├── operation_validate_test.go ├── parameter.go ├── parameter_test.go ├── paths.go ├── reference.go ├── response.go ├── response_validate_test.go ├── roundtrip_test.go ├── security.go ├── security_validate_test.go ├── swagger.go ├── swagger_test.go ├── swagger_validate_test.go ├── tag.go ├── tag_validate_test.go ├── testdata │ ├── test.swagger.json │ └── walk.swagger.json ├── upgrade.go ├── upgrade_test.go ├── walk.go ├── walk_matching.go └── walk_test.go ├── system ├── client.go ├── filesystem.go └── filesystem_test.go ├── validation ├── errors.go ├── options.go ├── options_test.go ├── utils.go ├── utils_test.go └── validation_test.go ├── values ├── core │ ├── eithervalue.go │ ├── eithervalue_test.go │ └── value.go ├── eithervalue.go ├── eithervalue_integration_test.go ├── eithervalue_jsonpointer_test.go ├── eithervalue_populate_test.go ├── eithervalue_sync_test.go ├── eithervalue_test.go └── value.go ├── walk ├── locations.go ├── set.go └── set_test.go └── yml ├── config.go ├── config_test.go ├── nodekind.go ├── nodekind_test.go ├── walk.go ├── walk_test.go ├── yml.go └── yml_test.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/assets/speakeasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/assets/speakeasy.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/scripts/README.md -------------------------------------------------------------------------------- /.github/scripts/format-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/scripts/format-coverage.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/workflows/commits.yml -------------------------------------------------------------------------------- /.github/workflows/coverage-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/workflows/coverage-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.mise.toml -------------------------------------------------------------------------------- /.vscode/settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/.vscode/settings.example.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | @speakeasy-api/dev-platform 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/README.md -------------------------------------------------------------------------------- /arazzo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/README.md -------------------------------------------------------------------------------- /arazzo/arazzo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/arazzo.go -------------------------------------------------------------------------------- /arazzo/arazzo_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/arazzo_examples_test.go -------------------------------------------------------------------------------- /arazzo/arazzo_order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/arazzo_order_test.go -------------------------------------------------------------------------------- /arazzo/arazzo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/arazzo_test.go -------------------------------------------------------------------------------- /arazzo/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/components.go -------------------------------------------------------------------------------- /arazzo/core/arazzo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/arazzo.go -------------------------------------------------------------------------------- /arazzo/core/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/components.go -------------------------------------------------------------------------------- /arazzo/core/criterion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/criterion.go -------------------------------------------------------------------------------- /arazzo/core/criterion_syncchanges_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/criterion_syncchanges_test.go -------------------------------------------------------------------------------- /arazzo/core/criterion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/criterion_test.go -------------------------------------------------------------------------------- /arazzo/core/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/factory_registration.go -------------------------------------------------------------------------------- /arazzo/core/failureaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/failureaction.go -------------------------------------------------------------------------------- /arazzo/core/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/info.go -------------------------------------------------------------------------------- /arazzo/core/outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/outputs.go -------------------------------------------------------------------------------- /arazzo/core/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/parameter.go -------------------------------------------------------------------------------- /arazzo/core/payloadreplacement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/payloadreplacement.go -------------------------------------------------------------------------------- /arazzo/core/requestbody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/requestbody.go -------------------------------------------------------------------------------- /arazzo/core/reusable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/reusable.go -------------------------------------------------------------------------------- /arazzo/core/reusable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/reusable_test.go -------------------------------------------------------------------------------- /arazzo/core/sourcedescription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/sourcedescription.go -------------------------------------------------------------------------------- /arazzo/core/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/step.go -------------------------------------------------------------------------------- /arazzo/core/successaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/successaction.go -------------------------------------------------------------------------------- /arazzo/core/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/core/workflow.go -------------------------------------------------------------------------------- /arazzo/criterion/condition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/criterion/condition.go -------------------------------------------------------------------------------- /arazzo/criterion/condition_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/criterion/condition_test.go -------------------------------------------------------------------------------- /arazzo/criterion/criterion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/criterion/criterion.go -------------------------------------------------------------------------------- /arazzo/criterion/criterion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/criterion/criterion_test.go -------------------------------------------------------------------------------- /arazzo/criterion/criterion_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/criterion/criterion_validate_test.go -------------------------------------------------------------------------------- /arazzo/criterion/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/criterion/factory_registration.go -------------------------------------------------------------------------------- /arazzo/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/factory_registration.go -------------------------------------------------------------------------------- /arazzo/failureaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/failureaction.go -------------------------------------------------------------------------------- /arazzo/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/info.go -------------------------------------------------------------------------------- /arazzo/outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/outputs.go -------------------------------------------------------------------------------- /arazzo/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/parameter.go -------------------------------------------------------------------------------- /arazzo/payloadreplacement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/payloadreplacement.go -------------------------------------------------------------------------------- /arazzo/requestbody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/requestbody.go -------------------------------------------------------------------------------- /arazzo/requestbody_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/requestbody_test.go -------------------------------------------------------------------------------- /arazzo/reusable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/reusable.go -------------------------------------------------------------------------------- /arazzo/reusable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/reusable_test.go -------------------------------------------------------------------------------- /arazzo/sourcedescription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/sourcedescription.go -------------------------------------------------------------------------------- /arazzo/step.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/step.go -------------------------------------------------------------------------------- /arazzo/successaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/successaction.go -------------------------------------------------------------------------------- /arazzo/testdata/invalid.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/invalid.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/addition.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/addition.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/complex.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/complex.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/deletion.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/deletion.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/input.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/input.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/map-addition.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/map-addition.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/map-deletion.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/map-deletion.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/map-reorder.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/map-reorder.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/map-stress.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/map-stress.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/ordering/reorder.expected.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/ordering/reorder.expected.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/simple.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/simple.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/speakeasybar.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/speakeasybar.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/test.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/test.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/testdata/traintravelapi.arazzo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/testdata/traintravelapi.arazzo.yaml -------------------------------------------------------------------------------- /arazzo/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/walk.go -------------------------------------------------------------------------------- /arazzo/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/walk_test.go -------------------------------------------------------------------------------- /arazzo/workflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/arazzo/workflow.go -------------------------------------------------------------------------------- /cache/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cache/example_test.go -------------------------------------------------------------------------------- /cache/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cache/manager.go -------------------------------------------------------------------------------- /cache/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cache/manager_test.go -------------------------------------------------------------------------------- /cmd/openapi/commands/arazzo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/arazzo/README.md -------------------------------------------------------------------------------- /cmd/openapi/commands/arazzo/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/arazzo/root.go -------------------------------------------------------------------------------- /cmd/openapi/commands/arazzo/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/arazzo/validate.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/README.md -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/bootstrap.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/bundle.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/clean.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/explore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/explore.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/inline.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/join.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/localize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/localize.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/optimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/optimize.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/root.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/sanitize.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/shared.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/snip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/snip.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/upgrade.go -------------------------------------------------------------------------------- /cmd/openapi/commands/openapi/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/openapi/validate.go -------------------------------------------------------------------------------- /cmd/openapi/commands/overlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/overlay/README.md -------------------------------------------------------------------------------- /cmd/openapi/commands/overlay/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/overlay/apply.go -------------------------------------------------------------------------------- /cmd/openapi/commands/overlay/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/overlay/compare.go -------------------------------------------------------------------------------- /cmd/openapi/commands/overlay/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/overlay/root.go -------------------------------------------------------------------------------- /cmd/openapi/commands/overlay/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/overlay/shared.go -------------------------------------------------------------------------------- /cmd/openapi/commands/overlay/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/overlay/validate.go -------------------------------------------------------------------------------- /cmd/openapi/commands/swagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/swagger/README.md -------------------------------------------------------------------------------- /cmd/openapi/commands/swagger/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/commands/swagger/root.go -------------------------------------------------------------------------------- /cmd/openapi/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/go.mod -------------------------------------------------------------------------------- /cmd/openapi/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/go.sum -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/collector.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/collector_test.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/model.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/tui/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/tui/input.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/tui/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/tui/model.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/tui/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/tui/model_test.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/tui/styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/tui/styles.go -------------------------------------------------------------------------------- /cmd/openapi/internal/explore/tui/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/internal/explore/tui/view.go -------------------------------------------------------------------------------- /cmd/openapi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/openapi/main.go -------------------------------------------------------------------------------- /cmd/update-examples/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/cmd/update-examples/main.go -------------------------------------------------------------------------------- /errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/errors/errors.go -------------------------------------------------------------------------------- /errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/errors/errors_test.go -------------------------------------------------------------------------------- /expression/core/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/core/value.go -------------------------------------------------------------------------------- /expression/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/expression.go -------------------------------------------------------------------------------- /expression/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/expression_test.go -------------------------------------------------------------------------------- /expression/expressions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/expressions.go -------------------------------------------------------------------------------- /expression/expressions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/expressions_test.go -------------------------------------------------------------------------------- /expression/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/factory_registration.go -------------------------------------------------------------------------------- /expression/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/expression/value.go -------------------------------------------------------------------------------- /extensions/core/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/extensions/core/extensions.go -------------------------------------------------------------------------------- /extensions/core/extensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/extensions/core/extensions_test.go -------------------------------------------------------------------------------- /extensions/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/extensions/extensions.go -------------------------------------------------------------------------------- /extensions/extensions_isequal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/extensions/extensions_isequal_test.go -------------------------------------------------------------------------------- /extensions/extensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/extensions/extensions_test.go -------------------------------------------------------------------------------- /extensions/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/extensions/factory_registration.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- 1 | go 1.24.3 2 | 3 | use ( 4 | . 5 | ./cmd/openapi 6 | ) 7 | -------------------------------------------------------------------------------- /hashing/hashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/hashing/hashing.go -------------------------------------------------------------------------------- /hashing/hashing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/hashing/hashing_test.go -------------------------------------------------------------------------------- /internal/interfaces/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/interfaces/interfaces.go -------------------------------------------------------------------------------- /internal/interfaces/interfaces_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/interfaces/interfaces_test.go -------------------------------------------------------------------------------- /internal/testutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/testutils/utils.go -------------------------------------------------------------------------------- /internal/testutils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/testutils/utils_test.go -------------------------------------------------------------------------------- /internal/utils/references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/references.go -------------------------------------------------------------------------------- /internal/utils/references_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/references_path_test.go -------------------------------------------------------------------------------- /internal/utils/references_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/references_test.go -------------------------------------------------------------------------------- /internal/utils/references_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/references_windows_test.go -------------------------------------------------------------------------------- /internal/utils/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/slices.go -------------------------------------------------------------------------------- /internal/utils/string_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/string_builder.go -------------------------------------------------------------------------------- /internal/utils/string_builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/string_builder_test.go -------------------------------------------------------------------------------- /internal/utils/url_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/url_cache.go -------------------------------------------------------------------------------- /internal/utils/url_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/url_cache_test.go -------------------------------------------------------------------------------- /internal/utils/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/versions.go -------------------------------------------------------------------------------- /internal/utils/versions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/internal/utils/versions_test.go -------------------------------------------------------------------------------- /json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/json/json.go -------------------------------------------------------------------------------- /json/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/json/json_test.go -------------------------------------------------------------------------------- /jsonpointer/embedded_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/embedded_map_test.go -------------------------------------------------------------------------------- /jsonpointer/jsonpointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/jsonpointer.go -------------------------------------------------------------------------------- /jsonpointer/jsonpointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/jsonpointer_test.go -------------------------------------------------------------------------------- /jsonpointer/map_index_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/map_index_key_test.go -------------------------------------------------------------------------------- /jsonpointer/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/models.go -------------------------------------------------------------------------------- /jsonpointer/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/models_test.go -------------------------------------------------------------------------------- /jsonpointer/models_yaml_fallback_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/models_yaml_fallback_test.go -------------------------------------------------------------------------------- /jsonpointer/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/navigation.go -------------------------------------------------------------------------------- /jsonpointer/yamlnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/yamlnode.go -------------------------------------------------------------------------------- /jsonpointer/yamlnode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonpointer/yamlnode_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/core/discriminator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/core/discriminator.go -------------------------------------------------------------------------------- /jsonschema/oas3/core/externaldoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/core/externaldoc.go -------------------------------------------------------------------------------- /jsonschema/oas3/core/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/core/factory_registration.go -------------------------------------------------------------------------------- /jsonschema/oas3/core/jsonschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/core/jsonschema.go -------------------------------------------------------------------------------- /jsonschema/oas3/core/jsonschema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/core/jsonschema_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/core/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/core/xml.go -------------------------------------------------------------------------------- /jsonschema/oas3/defs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/defs_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/discriminator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/discriminator.go -------------------------------------------------------------------------------- /jsonschema/oas3/discriminator_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/discriminator_unmarshal_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/discriminator_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/discriminator_validate_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/externaldoc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/externaldoc.go -------------------------------------------------------------------------------- /jsonschema/oas3/externaldoc_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/externaldoc_unmarshal_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/externaldoc_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/externaldoc_validate_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/factory_registration.go -------------------------------------------------------------------------------- /jsonschema/oas3/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/inline.go -------------------------------------------------------------------------------- /jsonschema/oas3/inline_stress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/inline_stress_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/inline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/inline_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/inline_timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/inline_timeout_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/jsonschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/jsonschema.go -------------------------------------------------------------------------------- /jsonschema/oas3/jsonschema_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/jsonschema_validate_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/resolution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/resolution.go -------------------------------------------------------------------------------- /jsonschema/oas3/resolution_external_ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/resolution_external_ref_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/resolution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/resolution_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema.go -------------------------------------------------------------------------------- /jsonschema/oas3/schema30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema30.json -------------------------------------------------------------------------------- /jsonschema/oas3/schema31.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema31.base.json -------------------------------------------------------------------------------- /jsonschema/oas3/schema31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema31.json -------------------------------------------------------------------------------- /jsonschema/oas3/schema_exclusive_validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema_exclusive_validation_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/schema_isequal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema_isequal_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/schema_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema_unmarshal_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/schema_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/schema_validate_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/shallowcopy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/shallowcopy_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/circular2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/circular2.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/complex_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/complex_schema.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/defs_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/defs_schema.json -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/external_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/external_defs.json -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/external_openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/external_openapi.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/external_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/external_schema.json -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/non_standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/non_standard.json -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/pagerduty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/pagerduty.json -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/resolve_test_chained.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/resolve_test_chained.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/resolve_test_external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/resolve_test_external.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/resolve_test_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/resolve_test_main.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/simple_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/simple_schema.yaml -------------------------------------------------------------------------------- /jsonschema/oas3/testdata/stresstest/combinatorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/testdata/stresstest/combinatorial.json -------------------------------------------------------------------------------- /jsonschema/oas3/tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/tests/go.mod -------------------------------------------------------------------------------- /jsonschema/oas3/tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/tests/go.sum -------------------------------------------------------------------------------- /jsonschema/oas3/tests/remote_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/tests/remote_server.go -------------------------------------------------------------------------------- /jsonschema/oas3/tests/testsuite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/tests/testsuite_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/types.go -------------------------------------------------------------------------------- /jsonschema/oas3/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/validation.go -------------------------------------------------------------------------------- /jsonschema/oas3/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/value.go -------------------------------------------------------------------------------- /jsonschema/oas3/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/walk.go -------------------------------------------------------------------------------- /jsonschema/oas3/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/walk_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/xml.go -------------------------------------------------------------------------------- /jsonschema/oas3/xml_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/xml_unmarshal_test.go -------------------------------------------------------------------------------- /jsonschema/oas3/xml_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/jsonschema/oas3/xml_validate_test.go -------------------------------------------------------------------------------- /marshaller/coremodel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/coremodel.go -------------------------------------------------------------------------------- /marshaller/coremodel_jsonpath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/coremodel_jsonpath_test.go -------------------------------------------------------------------------------- /marshaller/coremodel_jsonpointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/coremodel_jsonpointer_test.go -------------------------------------------------------------------------------- /marshaller/empty_map_marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/empty_map_marshal_test.go -------------------------------------------------------------------------------- /marshaller/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/extensions.go -------------------------------------------------------------------------------- /marshaller/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/factory.go -------------------------------------------------------------------------------- /marshaller/factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/factory_test.go -------------------------------------------------------------------------------- /marshaller/integration/factory_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/integration/factory_integration_test.go -------------------------------------------------------------------------------- /marshaller/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/marshal.go -------------------------------------------------------------------------------- /marshaller/marshalling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/marshalling_test.go -------------------------------------------------------------------------------- /marshaller/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/model.go -------------------------------------------------------------------------------- /marshaller/model_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/model_test.go -------------------------------------------------------------------------------- /marshaller/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/node.go -------------------------------------------------------------------------------- /marshaller/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/node_test.go -------------------------------------------------------------------------------- /marshaller/populator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/populator.go -------------------------------------------------------------------------------- /marshaller/populator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/populator_test.go -------------------------------------------------------------------------------- /marshaller/populator_unmarshalextensionmodel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/populator_unmarshalextensionmodel_test.go -------------------------------------------------------------------------------- /marshaller/sequencedmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/sequencedmap.go -------------------------------------------------------------------------------- /marshaller/sequencedmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/sequencedmap_test.go -------------------------------------------------------------------------------- /marshaller/syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/syncer.go -------------------------------------------------------------------------------- /marshaller/syncing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/syncing_test.go -------------------------------------------------------------------------------- /marshaller/tests/core/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/tests/core/factory_registration.go -------------------------------------------------------------------------------- /marshaller/tests/core/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/tests/core/models.go -------------------------------------------------------------------------------- /marshaller/tests/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/tests/factory_registration.go -------------------------------------------------------------------------------- /marshaller/tests/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/tests/models.go -------------------------------------------------------------------------------- /marshaller/unmarshaller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/unmarshaller.go -------------------------------------------------------------------------------- /marshaller/unmarshalling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/marshaller/unmarshalling_test.go -------------------------------------------------------------------------------- /mise-tasks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/build -------------------------------------------------------------------------------- /mise-tasks/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/ci -------------------------------------------------------------------------------- /mise-tasks/examples-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/examples-check -------------------------------------------------------------------------------- /mise-tasks/fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/fmt -------------------------------------------------------------------------------- /mise-tasks/fmt-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/fmt-check -------------------------------------------------------------------------------- /mise-tasks/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/lint -------------------------------------------------------------------------------- /mise-tasks/mod-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/mod-check -------------------------------------------------------------------------------- /mise-tasks/mod-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/mod-tidy -------------------------------------------------------------------------------- /mise-tasks/security: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/security -------------------------------------------------------------------------------- /mise-tasks/setup-submodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/setup-submodules -------------------------------------------------------------------------------- /mise-tasks/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/test -------------------------------------------------------------------------------- /mise-tasks/test-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/test-cli -------------------------------------------------------------------------------- /mise-tasks/test-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/test-coverage -------------------------------------------------------------------------------- /mise-tasks/update-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/mise-tasks/update-examples -------------------------------------------------------------------------------- /openapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/README.md -------------------------------------------------------------------------------- /openapi/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/bootstrap.go -------------------------------------------------------------------------------- /openapi/bootstrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/bootstrap_test.go -------------------------------------------------------------------------------- /openapi/bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/bundle.go -------------------------------------------------------------------------------- /openapi/bundle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/bundle_test.go -------------------------------------------------------------------------------- /openapi/callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/callbacks.go -------------------------------------------------------------------------------- /openapi/callbacks_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/callbacks_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/callbacks_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/callbacks_validate_test.go -------------------------------------------------------------------------------- /openapi/circular_marshalling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/circular_marshalling_test.go -------------------------------------------------------------------------------- /openapi/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/clean.go -------------------------------------------------------------------------------- /openapi/clean_paths_reachability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/clean_paths_reachability_test.go -------------------------------------------------------------------------------- /openapi/clean_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/clean_tags_test.go -------------------------------------------------------------------------------- /openapi/clean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/clean_test.go -------------------------------------------------------------------------------- /openapi/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/components.go -------------------------------------------------------------------------------- /openapi/components_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/components_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/components_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/components_validate_test.go -------------------------------------------------------------------------------- /openapi/core/callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/callbacks.go -------------------------------------------------------------------------------- /openapi/core/callbacks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/callbacks_test.go -------------------------------------------------------------------------------- /openapi/core/components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/components.go -------------------------------------------------------------------------------- /openapi/core/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/encoding.go -------------------------------------------------------------------------------- /openapi/core/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/example.go -------------------------------------------------------------------------------- /openapi/core/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/factory_registration.go -------------------------------------------------------------------------------- /openapi/core/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/header.go -------------------------------------------------------------------------------- /openapi/core/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/info.go -------------------------------------------------------------------------------- /openapi/core/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/link.go -------------------------------------------------------------------------------- /openapi/core/mediatype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/mediatype.go -------------------------------------------------------------------------------- /openapi/core/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/openapi.go -------------------------------------------------------------------------------- /openapi/core/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/operation.go -------------------------------------------------------------------------------- /openapi/core/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/parameter.go -------------------------------------------------------------------------------- /openapi/core/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/paths.go -------------------------------------------------------------------------------- /openapi/core/paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/paths_test.go -------------------------------------------------------------------------------- /openapi/core/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/reference.go -------------------------------------------------------------------------------- /openapi/core/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/requests.go -------------------------------------------------------------------------------- /openapi/core/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/responses.go -------------------------------------------------------------------------------- /openapi/core/responses_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/responses_test.go -------------------------------------------------------------------------------- /openapi/core/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/security.go -------------------------------------------------------------------------------- /openapi/core/security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/security_test.go -------------------------------------------------------------------------------- /openapi/core/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/server.go -------------------------------------------------------------------------------- /openapi/core/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/core/tag.go -------------------------------------------------------------------------------- /openapi/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/encoding.go -------------------------------------------------------------------------------- /openapi/encoding_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/encoding_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/encoding_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/encoding_validate_test.go -------------------------------------------------------------------------------- /openapi/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/examples.go -------------------------------------------------------------------------------- /openapi/examples_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/examples_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/examples_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/examples_validate_test.go -------------------------------------------------------------------------------- /openapi/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/factory_registration.go -------------------------------------------------------------------------------- /openapi/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/header.go -------------------------------------------------------------------------------- /openapi/header_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/header_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/header_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/header_validate_test.go -------------------------------------------------------------------------------- /openapi/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/info.go -------------------------------------------------------------------------------- /openapi/info_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/info_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/info_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/info_validate_test.go -------------------------------------------------------------------------------- /openapi/inline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/inline.go -------------------------------------------------------------------------------- /openapi/inline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/inline_test.go -------------------------------------------------------------------------------- /openapi/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/join.go -------------------------------------------------------------------------------- /openapi/join_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/join_test.go -------------------------------------------------------------------------------- /openapi/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/links.go -------------------------------------------------------------------------------- /openapi/links_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/links_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/links_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/links_validate_test.go -------------------------------------------------------------------------------- /openapi/localize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/localize.go -------------------------------------------------------------------------------- /openapi/localize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/localize_test.go -------------------------------------------------------------------------------- /openapi/marshalling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/marshalling.go -------------------------------------------------------------------------------- /openapi/mediatype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/mediatype.go -------------------------------------------------------------------------------- /openapi/mediatype_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/mediatype_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/mediatype_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/mediatype_validate_test.go -------------------------------------------------------------------------------- /openapi/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/openapi.go -------------------------------------------------------------------------------- /openapi/openapi_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/openapi_examples_test.go -------------------------------------------------------------------------------- /openapi/openapi_getters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/openapi_getters_test.go -------------------------------------------------------------------------------- /openapi/openapi_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/openapi_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/openapi_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/openapi_validate_test.go -------------------------------------------------------------------------------- /openapi/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/operation.go -------------------------------------------------------------------------------- /openapi/operation_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/operation_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/operation_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/operation_validate_test.go -------------------------------------------------------------------------------- /openapi/optimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/optimize.go -------------------------------------------------------------------------------- /openapi/optimize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/optimize_test.go -------------------------------------------------------------------------------- /openapi/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/parameter.go -------------------------------------------------------------------------------- /openapi/parameter_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/parameter_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/parameter_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/parameter_validate_test.go -------------------------------------------------------------------------------- /openapi/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/paths.go -------------------------------------------------------------------------------- /openapi/paths_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/paths_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/paths_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/paths_validate_test.go -------------------------------------------------------------------------------- /openapi/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/reference.go -------------------------------------------------------------------------------- /openapi/reference_inline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/reference_inline_test.go -------------------------------------------------------------------------------- /openapi/reference_resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/reference_resolve_test.go -------------------------------------------------------------------------------- /openapi/reference_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/reference_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/reference_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/reference_validate_test.go -------------------------------------------------------------------------------- /openapi/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/requests.go -------------------------------------------------------------------------------- /openapi/requests_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/requests_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/requests_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/requests_validate_test.go -------------------------------------------------------------------------------- /openapi/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/responses.go -------------------------------------------------------------------------------- /openapi/responses_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/responses_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/responses_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/responses_validate_test.go -------------------------------------------------------------------------------- /openapi/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/sanitize.go -------------------------------------------------------------------------------- /openapi/sanitize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/sanitize_test.go -------------------------------------------------------------------------------- /openapi/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/security.go -------------------------------------------------------------------------------- /openapi/security_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/security_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/security_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/security_validate_test.go -------------------------------------------------------------------------------- /openapi/serialization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/serialization.go -------------------------------------------------------------------------------- /openapi/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/server.go -------------------------------------------------------------------------------- /openapi/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/server_test.go -------------------------------------------------------------------------------- /openapi/server_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/server_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/server_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/server_validate_test.go -------------------------------------------------------------------------------- /openapi/snip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/snip.go -------------------------------------------------------------------------------- /openapi/snip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/snip_test.go -------------------------------------------------------------------------------- /openapi/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/tag.go -------------------------------------------------------------------------------- /openapi/tag_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/tag_unmarshal_test.go -------------------------------------------------------------------------------- /openapi/tag_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/tag_validate_test.go -------------------------------------------------------------------------------- /openapi/testdata/bootstrap_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/bootstrap_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/bundle/issue50/actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/bundle/issue50/actual.yaml -------------------------------------------------------------------------------- /openapi/testdata/bundle/issue50/common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/bundle/issue50/common.yaml -------------------------------------------------------------------------------- /openapi/testdata/bundle/issue50/country.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/bundle/issue50/country.yaml -------------------------------------------------------------------------------- /openapi/testdata/bundle/issue50/expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/bundle/issue50/expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/bundle/issue50/test/testapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/bundle/issue50/test/testapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/clean/clean_empty_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/clean/clean_empty_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/clean/clean_empty_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/clean/clean_empty_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/clean/clean_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/clean/clean_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/clean/clean_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/clean/clean_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/bundled_counter_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/bundled_counter_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/bundled_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/bundled_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/bundled_sibling_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/bundled_sibling_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/common/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/common/openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external/parameters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external/parameters.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_api.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_conflicting_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_conflicting_user.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_post.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_simple_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_simple_schema.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_user.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_user_preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_user_preferences.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/external_user_profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/external_user_profile.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/inline_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/inline_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/inline_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/inline_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/inlined_sibling_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/inlined_sibling_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/test/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/test/openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/inline/testdata/test.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/inline/testdata/test.openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/invalid.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/invalid.openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/conflict_security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/conflict_security.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/conflict_servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/conflict_servers.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/joined_conflicts_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/joined_conflicts_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/joined_counter_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/joined_counter_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/joined_filepath_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/joined_filepath_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/main.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/subdir/second.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/subdir/second.yaml -------------------------------------------------------------------------------- /openapi/testdata/join/third.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/join/third.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/api/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/api/components.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/components.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/schemas/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/schemas/address.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/schemas/category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/schemas/category.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/schemas/geo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/schemas/geo.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/shared/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/shared/address.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/input/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/input/spec.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/address.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/address_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/address_1.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/category.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/components.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/components_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/components_1.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/geo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/geo.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/metadata.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/user-preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/user-preferences.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_counter/user-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_counter/user-profile.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/address.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/api-components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/api-components.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/category.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/components.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/geo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/geo.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/metadata.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/shared-address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/shared-address.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/user-preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/user-preferences.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/output_pathbased/user-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/output_pathbased/user-profile.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/remote/schemas/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/remote/schemas/metadata.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/remote/schemas/user-preferences.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/remote/schemas/user-preferences.yaml -------------------------------------------------------------------------------- /openapi/testdata/localize/remote/schemas/user-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/localize/remote/schemas/user-profile.yaml -------------------------------------------------------------------------------- /openapi/testdata/optimize/optimize_actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/optimize/optimize_actual.yaml -------------------------------------------------------------------------------- /openapi/testdata/optimize/optimize_callback_actual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/optimize/optimize_callback_actual.yaml -------------------------------------------------------------------------------- /openapi/testdata/optimize/optimize_callback_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/optimize/optimize_callback_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/optimize/optimize_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/optimize/optimize_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/optimize/optimize_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/optimize/optimize_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/resolve_test/chained.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/resolve_test/chained.yaml -------------------------------------------------------------------------------- /openapi/testdata/resolve_test/circular.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/resolve_test/circular.yaml -------------------------------------------------------------------------------- /openapi/testdata/resolve_test/external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/resolve_test/external.yaml -------------------------------------------------------------------------------- /openapi/testdata/resolve_test/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/resolve_test/main.yaml -------------------------------------------------------------------------------- /openapi/testdata/resolve_test/models.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/resolve_test/models.yaml -------------------------------------------------------------------------------- /openapi/testdata/resolve_test/schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/resolve_test/schemas.json -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_keep_components_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_keep_components_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_keep_extensions_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_keep_extensions_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_keep_extensions_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_keep_extensions_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_multi_pattern_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_multi_pattern_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_multi_pattern_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_multi_pattern_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_no_extensions_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_no_extensions_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_pattern_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_pattern_config.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_pattern_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_pattern_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/sanitize/sanitize_pattern_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/sanitize/sanitize_pattern_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/simple.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/simple.openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/snip/snip_expected.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/snip/snip_expected.yaml -------------------------------------------------------------------------------- /openapi/testdata/snip/snip_input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/snip/snip_input.yaml -------------------------------------------------------------------------------- /openapi/testdata/test.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/test.openapi.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/3_0_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/3_0_0.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/3_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/3_0_2.json -------------------------------------------------------------------------------- /openapi/testdata/upgrade/3_0_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/3_0_3.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/3_1_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/3_1_0.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/edge_cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/edge_cases.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/expected_3_0_0_upgraded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/expected_3_0_0_upgraded.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/expected_3_0_2_upgraded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/expected_3_0_2_upgraded.json -------------------------------------------------------------------------------- /openapi/testdata/upgrade/expected_3_0_2_upgraded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/expected_3_0_2_upgraded.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/expected_3_0_3_upgraded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/expected_3_0_3_upgraded.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/expected_3_1_0_upgraded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/expected_3_1_0_upgraded.yaml -------------------------------------------------------------------------------- /openapi/testdata/upgrade/expected_minimal_nullable_upgraded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/expected_minimal_nullable_upgraded.json -------------------------------------------------------------------------------- /openapi/testdata/upgrade/minimal_nullable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/upgrade/minimal_nullable.json -------------------------------------------------------------------------------- /openapi/testdata/walk.openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/testdata/walk.openapi.yaml -------------------------------------------------------------------------------- /openapi/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/upgrade.go -------------------------------------------------------------------------------- /openapi/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/upgrade_test.go -------------------------------------------------------------------------------- /openapi/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/utils.go -------------------------------------------------------------------------------- /openapi/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/utils_test.go -------------------------------------------------------------------------------- /openapi/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk.go -------------------------------------------------------------------------------- /openapi/walk_components.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_components.go -------------------------------------------------------------------------------- /openapi/walk_matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_matching.go -------------------------------------------------------------------------------- /openapi/walk_operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_operations_test.go -------------------------------------------------------------------------------- /openapi/walk_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_schema.go -------------------------------------------------------------------------------- /openapi/walk_security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_security.go -------------------------------------------------------------------------------- /openapi/walk_tags_servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_tags_servers.go -------------------------------------------------------------------------------- /openapi/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_test.go -------------------------------------------------------------------------------- /openapi/walk_webhooks_callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/openapi/walk_webhooks_callbacks.go -------------------------------------------------------------------------------- /overlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/README.md -------------------------------------------------------------------------------- /overlay/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/apply.go -------------------------------------------------------------------------------- /overlay/apply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/apply_test.go -------------------------------------------------------------------------------- /overlay/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/compare.go -------------------------------------------------------------------------------- /overlay/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/compare_test.go -------------------------------------------------------------------------------- /overlay/jsonpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/jsonpath.go -------------------------------------------------------------------------------- /overlay/loader/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/loader/overlay.go -------------------------------------------------------------------------------- /overlay/loader/overlay_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/loader/overlay_test.go -------------------------------------------------------------------------------- /overlay/loader/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/loader/spec.go -------------------------------------------------------------------------------- /overlay/loader/spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/loader/spec_test.go -------------------------------------------------------------------------------- /overlay/overlay_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/overlay_examples_test.go -------------------------------------------------------------------------------- /overlay/parents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/parents.go -------------------------------------------------------------------------------- /overlay/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/parse.go -------------------------------------------------------------------------------- /overlay/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/parse_test.go -------------------------------------------------------------------------------- /overlay/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/schema.go -------------------------------------------------------------------------------- /overlay/testdata/openapi-overlayed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/openapi-overlayed.yaml -------------------------------------------------------------------------------- /overlay/testdata/openapi-strict-onechange.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/openapi-strict-onechange.yaml -------------------------------------------------------------------------------- /overlay/testdata/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/openapi.yaml -------------------------------------------------------------------------------- /overlay/testdata/overlay-generated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/overlay-generated.yaml -------------------------------------------------------------------------------- /overlay/testdata/overlay-mismatched.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/overlay-mismatched.yaml -------------------------------------------------------------------------------- /overlay/testdata/overlay-old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/overlay-old.yaml -------------------------------------------------------------------------------- /overlay/testdata/overlay-zero-change.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/overlay-zero-change.yaml -------------------------------------------------------------------------------- /overlay/testdata/overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/testdata/overlay.yaml -------------------------------------------------------------------------------- /overlay/testdata/removeNote.yaml: -------------------------------------------------------------------------------- 1 | this got removed.. -------------------------------------------------------------------------------- /overlay/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/utils.go -------------------------------------------------------------------------------- /overlay/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/overlay/validate.go -------------------------------------------------------------------------------- /pointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/pointer/pointer.go -------------------------------------------------------------------------------- /pointer/pointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/pointer/pointer_test.go -------------------------------------------------------------------------------- /references/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/factory_registration.go -------------------------------------------------------------------------------- /references/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/reference.go -------------------------------------------------------------------------------- /references/reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/reference_test.go -------------------------------------------------------------------------------- /references/resolution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/resolution.go -------------------------------------------------------------------------------- /references/resolution_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/resolution_cache.go -------------------------------------------------------------------------------- /references/resolution_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/resolution_cache_test.go -------------------------------------------------------------------------------- /references/resolution_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/references/resolution_test.go -------------------------------------------------------------------------------- /sequencedmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/map.go -------------------------------------------------------------------------------- /sequencedmap/map_advanced_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/map_advanced_test.go -------------------------------------------------------------------------------- /sequencedmap/map_getters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/map_getters_test.go -------------------------------------------------------------------------------- /sequencedmap/map_isequal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/map_isequal_test.go -------------------------------------------------------------------------------- /sequencedmap/map_key_conversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/map_key_conversion_test.go -------------------------------------------------------------------------------- /sequencedmap/map_mutation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/map_mutation_test.go -------------------------------------------------------------------------------- /sequencedmap/ordered_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/ordered_test.go -------------------------------------------------------------------------------- /sequencedmap/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/utils.go -------------------------------------------------------------------------------- /sequencedmap/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/utils_test.go -------------------------------------------------------------------------------- /sequencedmap/yaml_unmarshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/sequencedmap/yaml_unmarshal_test.go -------------------------------------------------------------------------------- /swagger/core/externaldocs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/externaldocs.go -------------------------------------------------------------------------------- /swagger/core/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/factory_registration.go -------------------------------------------------------------------------------- /swagger/core/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/info.go -------------------------------------------------------------------------------- /swagger/core/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/operation.go -------------------------------------------------------------------------------- /swagger/core/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/parameter.go -------------------------------------------------------------------------------- /swagger/core/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/paths.go -------------------------------------------------------------------------------- /swagger/core/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/reference.go -------------------------------------------------------------------------------- /swagger/core/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/response.go -------------------------------------------------------------------------------- /swagger/core/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/security.go -------------------------------------------------------------------------------- /swagger/core/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/swagger.go -------------------------------------------------------------------------------- /swagger/core/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/core/tag.go -------------------------------------------------------------------------------- /swagger/externaldocs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/externaldocs.go -------------------------------------------------------------------------------- /swagger/factory_registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/factory_registration.go -------------------------------------------------------------------------------- /swagger/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/info.go -------------------------------------------------------------------------------- /swagger/info_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/info_validate_test.go -------------------------------------------------------------------------------- /swagger/marshalling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/marshalling.go -------------------------------------------------------------------------------- /swagger/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/operation.go -------------------------------------------------------------------------------- /swagger/operation_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/operation_validate_test.go -------------------------------------------------------------------------------- /swagger/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/parameter.go -------------------------------------------------------------------------------- /swagger/parameter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/parameter_test.go -------------------------------------------------------------------------------- /swagger/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/paths.go -------------------------------------------------------------------------------- /swagger/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/reference.go -------------------------------------------------------------------------------- /swagger/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/response.go -------------------------------------------------------------------------------- /swagger/response_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/response_validate_test.go -------------------------------------------------------------------------------- /swagger/roundtrip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/roundtrip_test.go -------------------------------------------------------------------------------- /swagger/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/security.go -------------------------------------------------------------------------------- /swagger/security_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/security_validate_test.go -------------------------------------------------------------------------------- /swagger/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/swagger.go -------------------------------------------------------------------------------- /swagger/swagger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/swagger_test.go -------------------------------------------------------------------------------- /swagger/swagger_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/swagger_validate_test.go -------------------------------------------------------------------------------- /swagger/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/tag.go -------------------------------------------------------------------------------- /swagger/tag_validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/tag_validate_test.go -------------------------------------------------------------------------------- /swagger/testdata/test.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/testdata/test.swagger.json -------------------------------------------------------------------------------- /swagger/testdata/walk.swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/testdata/walk.swagger.json -------------------------------------------------------------------------------- /swagger/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/upgrade.go -------------------------------------------------------------------------------- /swagger/upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/upgrade_test.go -------------------------------------------------------------------------------- /swagger/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/walk.go -------------------------------------------------------------------------------- /swagger/walk_matching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/walk_matching.go -------------------------------------------------------------------------------- /swagger/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/swagger/walk_test.go -------------------------------------------------------------------------------- /system/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/system/client.go -------------------------------------------------------------------------------- /system/filesystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/system/filesystem.go -------------------------------------------------------------------------------- /system/filesystem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/system/filesystem_test.go -------------------------------------------------------------------------------- /validation/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/validation/errors.go -------------------------------------------------------------------------------- /validation/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/validation/options.go -------------------------------------------------------------------------------- /validation/options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/validation/options_test.go -------------------------------------------------------------------------------- /validation/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/validation/utils.go -------------------------------------------------------------------------------- /validation/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/validation/utils_test.go -------------------------------------------------------------------------------- /validation/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/validation/validation_test.go -------------------------------------------------------------------------------- /values/core/eithervalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/core/eithervalue.go -------------------------------------------------------------------------------- /values/core/eithervalue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/core/eithervalue_test.go -------------------------------------------------------------------------------- /values/core/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/core/value.go -------------------------------------------------------------------------------- /values/eithervalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/eithervalue.go -------------------------------------------------------------------------------- /values/eithervalue_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/eithervalue_integration_test.go -------------------------------------------------------------------------------- /values/eithervalue_jsonpointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/eithervalue_jsonpointer_test.go -------------------------------------------------------------------------------- /values/eithervalue_populate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/eithervalue_populate_test.go -------------------------------------------------------------------------------- /values/eithervalue_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/eithervalue_sync_test.go -------------------------------------------------------------------------------- /values/eithervalue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/eithervalue_test.go -------------------------------------------------------------------------------- /values/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/values/value.go -------------------------------------------------------------------------------- /walk/locations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/walk/locations.go -------------------------------------------------------------------------------- /walk/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/walk/set.go -------------------------------------------------------------------------------- /walk/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/walk/set_test.go -------------------------------------------------------------------------------- /yml/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/config.go -------------------------------------------------------------------------------- /yml/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/config_test.go -------------------------------------------------------------------------------- /yml/nodekind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/nodekind.go -------------------------------------------------------------------------------- /yml/nodekind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/nodekind_test.go -------------------------------------------------------------------------------- /yml/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/walk.go -------------------------------------------------------------------------------- /yml/walk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/walk_test.go -------------------------------------------------------------------------------- /yml/yml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/yml.go -------------------------------------------------------------------------------- /yml/yml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speakeasy-api/openapi/HEAD/yml/yml_test.go --------------------------------------------------------------------------------