dconathan
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
78 changed files with
83 additions and
79 deletions
-
fastapi/openapi/utils.py
-
tests/test_additional_properties.py
-
tests/test_additional_responses_custom_model_in_callback.py
-
tests/test_additional_responses_default_validationerror.py
-
tests/test_application.py
-
tests/test_dependency_duplicates.py
-
tests/test_extra_routes.py
-
tests/test_filter_pydantic_sub_model.py
-
tests/test_get_request_body.py
-
tests/test_include_router_defaults_overrides.py
-
tests/test_modules_same_name_body/test_main.py
-
tests/test_multi_body_errors.py
-
tests/test_multi_query_errors.py
-
tests/test_param_in_path_and_dependency.py
-
tests/test_put_no_body.py
-
tests/test_repeated_dependency_schema.py
-
tests/test_schema_extra_examples.py
-
tests/test_security_oauth2.py
-
tests/test_security_oauth2_optional.py
-
tests/test_security_oauth2_optional_description.py
-
tests/test_starlette_exception.py
-
tests/test_sub_callbacks.py
-
tests/test_tutorial/test_additional_responses/test_tutorial001.py
-
tests/test_tutorial/test_additional_responses/test_tutorial002.py
-
tests/test_tutorial/test_additional_responses/test_tutorial003.py
-
tests/test_tutorial/test_additional_responses/test_tutorial004.py
-
tests/test_tutorial/test_async_sql_databases/test_tutorial001.py
-
tests/test_tutorial/test_bigger_applications/test_main.py
-
tests/test_tutorial/test_body/test_tutorial001.py
-
tests/test_tutorial/test_body_fields/test_tutorial001.py
-
tests/test_tutorial/test_body_multiple_params/test_tutorial001.py
-
tests/test_tutorial/test_body_multiple_params/test_tutorial003.py
-
tests/test_tutorial/test_body_nested_models/test_tutorial009.py
-
tests/test_tutorial/test_body_updates/test_tutorial001.py
-
tests/test_tutorial/test_cookie_params/test_tutorial001.py
-
tests/test_tutorial/test_dataclasses/test_tutorial001.py
-
tests/test_tutorial/test_dataclasses/test_tutorial003.py
-
tests/test_tutorial/test_dependencies/test_tutorial001.py
-
tests/test_tutorial/test_dependencies/test_tutorial004.py
-
tests/test_tutorial/test_dependencies/test_tutorial006.py
-
tests/test_tutorial/test_dependencies/test_tutorial012.py
-
tests/test_tutorial/test_events/test_tutorial001.py
-
tests/test_tutorial/test_extra_data_types/test_tutorial001.py
-
tests/test_tutorial/test_extra_models/test_tutorial003.py
-
tests/test_tutorial/test_handling_errors/test_tutorial001.py
-
tests/test_tutorial/test_handling_errors/test_tutorial002.py
-
tests/test_tutorial/test_handling_errors/test_tutorial003.py
-
tests/test_tutorial/test_handling_errors/test_tutorial004.py
-
tests/test_tutorial/test_handling_errors/test_tutorial005.py
-
tests/test_tutorial/test_handling_errors/test_tutorial006.py
-
tests/test_tutorial/test_header_params/test_tutorial001.py
-
tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py
-
tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py
-
tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py
-
tests/test_tutorial/test_path_params/test_tutorial004.py
-
tests/test_tutorial/test_path_params/test_tutorial005.py
-
tests/test_tutorial/test_query_params/test_tutorial005.py
-
tests/test_tutorial/test_query_params/test_tutorial006.py
-
tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py
-
tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py
-
tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py
-
tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py
-
tests/test_tutorial/test_request_files/test_tutorial001.py
-
tests/test_tutorial/test_request_files/test_tutorial002.py
-
tests/test_tutorial/test_request_forms/test_tutorial001.py
-
tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py
-
tests/test_tutorial/test_response_model/test_tutorial003.py
-
tests/test_tutorial/test_response_model/test_tutorial004.py
-
tests/test_tutorial/test_response_model/test_tutorial005.py
-
tests/test_tutorial/test_response_model/test_tutorial006.py
-
tests/test_tutorial/test_schema_extra_example/test_tutorial004.py
-
tests/test_tutorial/test_security/test_tutorial003.py
-
tests/test_tutorial/test_security/test_tutorial005.py
-
tests/test_tutorial/test_sql_databases/test_sql_databases.py
-
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware.py
-
tests/test_tutorial/test_sql_databases_peewee/test_sql_databases_peewee.py
-
tests/test_union_body.py
-
tests/test_union_inherited_body.py
|
|
@ -38,7 +38,11 @@ validation_error_definition = { |
|
|
|
"title": "ValidationError", |
|
|
|
"type": "object", |
|
|
|
"properties": { |
|
|
|
"loc": {"title": "Location", "type": "array", "items": {"type": "string"}}, |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
}, |
|
|
|
|
|
@ -76,7 +76,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -119,7 +119,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -54,7 +54,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -1101,7 +1101,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -177,7 +177,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -292,7 +292,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -116,7 +116,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -85,7 +85,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -6612,7 +6612,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -101,7 +101,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -79,7 +79,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -63,7 +63,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -71,7 +71,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -57,7 +57,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -36,7 +36,7 @@ schema = { |
|
|
|
"ValidationError": { |
|
|
|
"properties": { |
|
|
|
"loc": { |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
}, |
|
|
|
|
|
@ -830,7 +830,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -117,7 +117,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -121,7 +121,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -122,7 +122,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -102,7 +102,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -256,7 +256,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -76,7 +76,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -72,7 +72,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -77,7 +77,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -75,7 +75,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -88,7 +88,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -323,7 +323,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -63,7 +63,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -87,7 +87,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -79,7 +79,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -90,7 +90,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -53,7 +53,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -109,7 +109,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -50,7 +50,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -71,7 +71,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -118,7 +118,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -104,7 +104,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -62,7 +62,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -55,7 +55,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -102,7 +102,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -47,7 +47,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -89,7 +89,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -78,7 +78,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -49,7 +49,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -49,7 +49,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -49,7 +49,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -49,7 +49,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -69,7 +69,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -49,7 +49,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -51,7 +51,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -143,7 +143,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -72,7 +72,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -72,7 +72,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -49,7 +49,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -54,7 +54,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
@ -138,7 +138,7 @@ openapi_schema2 = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -56,7 +56,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -68,7 +68,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -59,7 +59,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -53,7 +53,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -54,7 +54,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -54,7 +54,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -99,7 +99,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -119,7 +119,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -61,7 +61,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -61,7 +61,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -74,7 +74,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -71,7 +71,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -98,7 +98,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -98,7 +98,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -103,7 +103,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -81,7 +81,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -141,7 +141,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -261,7 +261,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -260,7 +260,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -318,7 +318,7 @@ openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -84,7 +84,7 @@ item_openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|
|
|
@ -96,7 +96,7 @@ inherited_item_openapi_schema = { |
|
|
|
"loc": { |
|
|
|
"title": "Location", |
|
|
|
"type": "array", |
|
|
|
"items": {"type": "string"}, |
|
|
|
"items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}, |
|
|
|
}, |
|
|
|
"msg": {"title": "Message", "type": "string"}, |
|
|
|
"type": {"title": "Error Type", "type": "string"}, |
|
|
|