├── .devcontainer └── devcontainer.json ├── .github ├── dependabot.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── Criteo.OpenApi.Comparator.sln ├── LICENSE ├── README.md ├── documentation ├── README.md └── rules │ ├── 1000.md │ ├── 1001.md │ ├── 1002.md │ ├── 1003.md │ ├── 1004.md │ ├── 1005.md │ ├── 1006.md │ ├── 1007.md │ ├── 1008.md │ ├── 1009.md │ ├── 1010.md │ ├── 1011.md │ ├── 1012.md │ ├── 1013.md │ ├── 1014.md │ ├── 1015.md │ ├── 1016.md │ ├── 1017.md │ ├── 1018.md │ ├── 1019.md │ ├── 1020.md │ ├── 1021.md │ ├── 1022.md │ ├── 1023.md │ ├── 1024.md │ ├── 1025.md │ ├── 1026.md │ ├── 1027.md │ ├── 1028.md │ ├── 1029.md │ ├── 1030.md │ ├── 1032.md │ ├── 1033.md │ ├── 1034.md │ ├── 1035.md │ ├── 1036.md │ ├── 1037.md │ ├── 1038.md │ ├── 1039.md │ ├── 1040.md │ ├── 1041.md │ ├── 1042.md │ ├── 1043.md │ ├── 1044.md │ ├── 1045.md │ ├── 1046.md │ ├── 1047.md │ ├── 1048.md │ └── 2000.md └── src ├── Criteo.OpenApi.Comparator.Cli ├── Criteo.OpenApi.Comparator.Cli.csproj ├── Options.cs └── Program.cs ├── Criteo.OpenApi.Comparator.UTest ├── Criteo.OpenApi.Comparator.UTest.csproj ├── OpenApiParserTests.cs ├── OpenApiSpecificationsCompareTests.cs ├── PrimitiveTypesExtensionTests.cs └── Resource │ ├── added_additional_properties │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_enum_value │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_header │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_operation │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_optional_parameter │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_optional_property │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_path │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_property_in_response │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_readOnly_property_in_response │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_request_body │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_required_parameter │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_required_property │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_response_code │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── added_schema_in_response │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── changed_parameter_order │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── constant_status_has_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── constraint_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── constraint_is_stronger │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── constraint_is_weaker │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── default_value_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── different_allOf │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── different_discriminator │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction │ ├── body_add.yaml │ ├── body_remove.yaml │ ├── both_ref_add.yaml │ ├── both_ref_remove.yaml │ ├── old_with_refs.json │ ├── old_without_refs.json │ ├── path_add.yaml │ ├── path_remove.yaml │ ├── query_add.yaml │ ├── query_remove.yaml │ ├── request_ref_add.yaml │ ├── request_ref_remove.yaml │ ├── response_add.yaml │ ├── response_ref_add.yaml │ ├── response_ref_remove.yaml │ └── response_remove.yaml │ ├── enum_direction_body_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_body_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_both_ref_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_both_ref_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_path_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_path_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_query_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_query_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_request_ref_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_request_ref_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_response_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_response_ref_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_response_ref_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── enum_direction_response_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── invalid_json_file.txt │ ├── issue_49_false_1015_equal_schemas │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── issue_49_false_1015_out_of_order_parameters │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── issue_59_case1 │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── issue_59_case2 │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── long_running_operation │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── modified_operation_id │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── no_version_change │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── nullable_property_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── oneof_add │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── oneof_add_ref │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── oneof_ref_inner_change │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── oneof_remove │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── oneof_remove_ref │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── oneof_reorder_refs │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── openapi_specification.json │ ├── openapi_specification.yaml │ ├── parameter_in_has_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── parameter_style_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── polymorphic_schema │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── readonly_property_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── recursive_model │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── reference_redirection │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── reference_redirection_type_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_additional_properties │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_client_parameter │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_enum_value │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_header │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_operation │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_path │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_property │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_request_body │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_required_parameter │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_response_code │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_schema │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── removed_schema_in_response │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── request_body_format_no_longer_supported │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── request_body_format_now_supported │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── required_status_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── response_body_format_now_supported │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── server_no_longer_supported │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── type_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── type_format_changed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── valid_oas │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ ├── version_reversed │ ├── diff.json │ ├── new.yaml │ └── old.yaml │ └── x-ms-paths │ ├── diff.json │ ├── new.yaml │ └── old.yaml └── Criteo.OpenApi.Comparator ├── Comparators ├── ComponentComparator.cs ├── ContentComparator.cs ├── Extensions │ ├── OpenApiParameterExtension.cs │ ├── OpenApiPathsExtensions.cs │ ├── OpenApiReferenceExtensions.cs │ ├── OpenApiSchemaExtensions.cs │ └── PrimitiveTypesExtensions.cs ├── OpenApiDocumentComparator.cs ├── OperationComparator.cs ├── ParameterComparator.cs ├── RequestBodyComparator.cs ├── ResponseComparator.cs └── SchemaComparator.cs ├── ComparisonContext.cs ├── ComparisonMessage.cs ├── ComparisonRule.cs ├── ComparisonRules.cs ├── Criteo.OpenApi.Comparator.csproj ├── Logging ├── LogMessageSeverity.cs └── ObjectPath.cs ├── MessageType.cs ├── OpenApiComparator.cs ├── Parser ├── JsonDocument.cs ├── OpenApiParser.cs └── PathLevelParameterConverter.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx └── Settings.cs /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/.gitignore -------------------------------------------------------------------------------- /Criteo.OpenApi.Comparator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/Criteo.OpenApi.Comparator.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/README.md -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/rules/1000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1000.md -------------------------------------------------------------------------------- /documentation/rules/1001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1001.md -------------------------------------------------------------------------------- /documentation/rules/1002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1002.md -------------------------------------------------------------------------------- /documentation/rules/1003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1003.md -------------------------------------------------------------------------------- /documentation/rules/1004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1004.md -------------------------------------------------------------------------------- /documentation/rules/1005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1005.md -------------------------------------------------------------------------------- /documentation/rules/1006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1006.md -------------------------------------------------------------------------------- /documentation/rules/1007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1007.md -------------------------------------------------------------------------------- /documentation/rules/1008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1008.md -------------------------------------------------------------------------------- /documentation/rules/1009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1009.md -------------------------------------------------------------------------------- /documentation/rules/1010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1010.md -------------------------------------------------------------------------------- /documentation/rules/1011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1011.md -------------------------------------------------------------------------------- /documentation/rules/1012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1012.md -------------------------------------------------------------------------------- /documentation/rules/1013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1013.md -------------------------------------------------------------------------------- /documentation/rules/1014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1014.md -------------------------------------------------------------------------------- /documentation/rules/1015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1015.md -------------------------------------------------------------------------------- /documentation/rules/1016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1016.md -------------------------------------------------------------------------------- /documentation/rules/1017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1017.md -------------------------------------------------------------------------------- /documentation/rules/1018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1018.md -------------------------------------------------------------------------------- /documentation/rules/1019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1019.md -------------------------------------------------------------------------------- /documentation/rules/1020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1020.md -------------------------------------------------------------------------------- /documentation/rules/1021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1021.md -------------------------------------------------------------------------------- /documentation/rules/1022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1022.md -------------------------------------------------------------------------------- /documentation/rules/1023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1023.md -------------------------------------------------------------------------------- /documentation/rules/1024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1024.md -------------------------------------------------------------------------------- /documentation/rules/1025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1025.md -------------------------------------------------------------------------------- /documentation/rules/1026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1026.md -------------------------------------------------------------------------------- /documentation/rules/1027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1027.md -------------------------------------------------------------------------------- /documentation/rules/1028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1028.md -------------------------------------------------------------------------------- /documentation/rules/1029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1029.md -------------------------------------------------------------------------------- /documentation/rules/1030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1030.md -------------------------------------------------------------------------------- /documentation/rules/1032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1032.md -------------------------------------------------------------------------------- /documentation/rules/1033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1033.md -------------------------------------------------------------------------------- /documentation/rules/1034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1034.md -------------------------------------------------------------------------------- /documentation/rules/1035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1035.md -------------------------------------------------------------------------------- /documentation/rules/1036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1036.md -------------------------------------------------------------------------------- /documentation/rules/1037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1037.md -------------------------------------------------------------------------------- /documentation/rules/1038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1038.md -------------------------------------------------------------------------------- /documentation/rules/1039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1039.md -------------------------------------------------------------------------------- /documentation/rules/1040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1040.md -------------------------------------------------------------------------------- /documentation/rules/1041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1041.md -------------------------------------------------------------------------------- /documentation/rules/1042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1042.md -------------------------------------------------------------------------------- /documentation/rules/1043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1043.md -------------------------------------------------------------------------------- /documentation/rules/1044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1044.md -------------------------------------------------------------------------------- /documentation/rules/1045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1045.md -------------------------------------------------------------------------------- /documentation/rules/1046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1046.md -------------------------------------------------------------------------------- /documentation/rules/1047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1047.md -------------------------------------------------------------------------------- /documentation/rules/1048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/1048.md -------------------------------------------------------------------------------- /documentation/rules/2000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/documentation/rules/2000.md -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.Cli/Criteo.OpenApi.Comparator.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.Cli/Criteo.OpenApi.Comparator.Cli.csproj -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.Cli/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.Cli/Options.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.Cli/Program.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Criteo.OpenApi.Comparator.UTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Criteo.OpenApi.Comparator.UTest.csproj -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/OpenApiParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/OpenApiParserTests.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/OpenApiSpecificationsCompareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/OpenApiSpecificationsCompareTests.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/PrimitiveTypesExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/PrimitiveTypesExtensionTests.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_additional_properties/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_additional_properties/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_additional_properties/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_additional_properties/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_additional_properties/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_additional_properties/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_enum_value/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_enum_value/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_enum_value/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_enum_value/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_enum_value/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_enum_value/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_header/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_header/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_header/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_header/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_header/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_header/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_operation/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_operation/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_operation/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_operation/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_operation/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_operation/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_parameter/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_parameter/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_parameter/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_parameter/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_parameter/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_parameter/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_property/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_property/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_property/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_property/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_property/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_optional_property/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_path/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_path/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_path/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_path/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_path/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_path/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_property_in_response/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_property_in_response/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_property_in_response/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_property_in_response/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_property_in_response/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_property_in_response/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_readOnly_property_in_response/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_readOnly_property_in_response/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_readOnly_property_in_response/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_readOnly_property_in_response/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_readOnly_property_in_response/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_readOnly_property_in_response/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_request_body/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_request_body/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_request_body/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_request_body/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_request_body/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_request_body/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_parameter/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_parameter/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_parameter/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_parameter/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_parameter/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_parameter/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_property/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_property/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_property/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_property/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_property/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_required_property/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_response_code/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_response_code/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_response_code/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_response_code/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_response_code/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_response_code/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_schema_in_response/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_schema_in_response/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_schema_in_response/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_schema_in_response/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/added_schema_in_response/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/added_schema_in_response/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/changed_parameter_order/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/changed_parameter_order/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/changed_parameter_order/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/changed_parameter_order/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/changed_parameter_order/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/changed_parameter_order/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constant_status_has_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constant_status_has_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constant_status_has_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constant_status_has_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constant_status_has_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constant_status_has_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_stronger/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_stronger/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_stronger/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_stronger/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_stronger/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_stronger/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_weaker/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_weaker/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_weaker/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_weaker/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_weaker/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/constraint_is_weaker/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/default_value_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/default_value_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/default_value_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/default_value_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/default_value_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/default_value_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/different_allOf/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/different_allOf/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/different_allOf/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/different_allOf/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/different_allOf/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/different_allOf/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/different_discriminator/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/different_discriminator/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/different_discriminator/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/different_discriminator/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/different_discriminator/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/different_discriminator/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/body_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/body_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/body_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/body_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/both_ref_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/both_ref_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/both_ref_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/both_ref_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/old_with_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/old_with_refs.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/old_without_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/old_without_refs.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/path_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/path_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/path_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/path_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/query_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/query_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/query_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/query_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/request_ref_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/request_ref_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/request_ref_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/request_ref_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_ref_add.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_ref_add.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_ref_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_ref_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_remove.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction/response_remove.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_body_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_both_ref_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_path_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_query_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_request_ref_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_ref_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/enum_direction_response_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/invalid_json_file.txt: -------------------------------------------------------------------------------- 1 | { 2 | "invalid_json" 3 | } -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_equal_schemas/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_equal_schemas/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_equal_schemas/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_equal_schemas/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_equal_schemas/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_equal_schemas/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_out_of_order_parameters/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_out_of_order_parameters/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_out_of_order_parameters/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_out_of_order_parameters/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_out_of_order_parameters/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_49_false_1015_out_of_order_parameters/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case1/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case1/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case1/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case1/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case1/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case1/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case2/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case2/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case2/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case2/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case2/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/issue_59_case2/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/long_running_operation/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/long_running_operation/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/long_running_operation/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/long_running_operation/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/long_running_operation/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/long_running_operation/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/modified_operation_id/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/modified_operation_id/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/modified_operation_id/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/modified_operation_id/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/modified_operation_id/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/modified_operation_id/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/no_version_change/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/no_version_change/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/no_version_change/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/no_version_change/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/no_version_change/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/no_version_change/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/nullable_property_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/nullable_property_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/nullable_property_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/nullable_property_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/nullable_property_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/nullable_property_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add_ref/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add_ref/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add_ref/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add_ref/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add_ref/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_add_ref/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_ref_inner_change/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_ref_inner_change/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_ref_inner_change/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_ref_inner_change/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_ref_inner_change/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_ref_inner_change/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove_ref/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove_ref/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove_ref/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove_ref/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove_ref/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_remove_ref/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_reorder_refs/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_reorder_refs/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_reorder_refs/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_reorder_refs/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_reorder_refs/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/oneof_reorder_refs/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/openapi_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/openapi_specification.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/openapi_specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/openapi_specification.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_in_has_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_in_has_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_in_has_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_in_has_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_in_has_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_in_has_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_style_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_style_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_style_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_style_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_style_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/parameter_style_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/polymorphic_schema/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/polymorphic_schema/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/polymorphic_schema/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/polymorphic_schema/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/polymorphic_schema/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/polymorphic_schema/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/readonly_property_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/readonly_property_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/readonly_property_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/readonly_property_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/readonly_property_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/readonly_property_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/recursive_model/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/recursive_model/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/recursive_model/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/recursive_model/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/recursive_model/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/recursive_model/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection_type_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection_type_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection_type_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection_type_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection_type_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/reference_redirection_type_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_additional_properties/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_additional_properties/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_additional_properties/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_additional_properties/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_additional_properties/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_additional_properties/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_client_parameter/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_client_parameter/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_client_parameter/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_client_parameter/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_client_parameter/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_client_parameter/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_enum_value/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_enum_value/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_enum_value/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_enum_value/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_enum_value/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_enum_value/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_header/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_header/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_header/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_header/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_header/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_header/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_operation/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_operation/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_operation/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_operation/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_operation/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_operation/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_path/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_path/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_path/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_path/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_path/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_path/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_property/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_property/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_property/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_property/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_property/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_property/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_request_body/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_request_body/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_request_body/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_request_body/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_request_body/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_request_body/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_required_parameter/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_required_parameter/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_required_parameter/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_required_parameter/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_required_parameter/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_required_parameter/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_response_code/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_response_code/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_response_code/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_response_code/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_response_code/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_response_code/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema_in_response/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema_in_response/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema_in_response/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema_in_response/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema_in_response/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/removed_schema_in_response/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_no_longer_supported/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_no_longer_supported/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_no_longer_supported/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_no_longer_supported/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_no_longer_supported/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_no_longer_supported/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_now_supported/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_now_supported/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_now_supported/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_now_supported/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_now_supported/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/request_body_format_now_supported/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/required_status_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/required_status_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/required_status_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/required_status_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/required_status_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/required_status_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/response_body_format_now_supported/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/response_body_format_now_supported/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/response_body_format_now_supported/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/response_body_format_now_supported/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/response_body_format_now_supported/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/response_body_format_now_supported/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/server_no_longer_supported/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/server_no_longer_supported/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/server_no_longer_supported/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/server_no_longer_supported/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/server_no_longer_supported/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/server_no_longer_supported/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/type_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/type_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/type_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/type_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/type_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/type_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/type_format_changed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/type_format_changed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/type_format_changed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/type_format_changed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/type_format_changed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/type_format_changed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/valid_oas/diff.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/valid_oas/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/valid_oas/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/valid_oas/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/valid_oas/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/version_reversed/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/version_reversed/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/version_reversed/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/version_reversed/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/version_reversed/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/version_reversed/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/x-ms-paths/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/x-ms-paths/diff.json -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/x-ms-paths/new.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/x-ms-paths/new.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator.UTest/Resource/x-ms-paths/old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator.UTest/Resource/x-ms-paths/old.yaml -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/ComponentComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/ComponentComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/ContentComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/ContentComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiParameterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiParameterExtension.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiPathsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiPathsExtensions.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiReferenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiReferenceExtensions.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiSchemaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/Extensions/OpenApiSchemaExtensions.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/Extensions/PrimitiveTypesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/Extensions/PrimitiveTypesExtensions.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/OpenApiDocumentComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/OpenApiDocumentComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/OperationComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/OperationComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/ParameterComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/ParameterComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/RequestBodyComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/RequestBodyComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/ResponseComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/ResponseComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Comparators/SchemaComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Comparators/SchemaComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/ComparisonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/ComparisonContext.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/ComparisonMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/ComparisonMessage.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/ComparisonRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/ComparisonRule.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/ComparisonRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/ComparisonRules.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Criteo.OpenApi.Comparator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Criteo.OpenApi.Comparator.csproj -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Logging/LogMessageSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Logging/LogMessageSeverity.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Logging/ObjectPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Logging/ObjectPath.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/MessageType.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/OpenApiComparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/OpenApiComparator.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Parser/JsonDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Parser/JsonDocument.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Parser/OpenApiParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Parser/OpenApiParser.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Parser/PathLevelParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Parser/PathLevelParameterConverter.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criteo/openapi-comparator/HEAD/src/Criteo.OpenApi.Comparator/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Criteo.OpenApi.Comparator/Settings.cs: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------