[python-experimental] Adds response body tests for json content type (#12988)

* Tags renamed

* Spec updated to add response bodies

* Adds correct tag to response body routes

* Adds response body autogen tests

* Adds pos test cases, removes dead code

* Adds and uses api_test_partial

* Samples regenerated
This commit is contained in:
Justin Black 2022-07-24 12:33:23 -07:00 committed by GitHub
parent 96b7d35e97
commit 30f1f11205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
545 changed files with 122756 additions and 37045 deletions

View File

@ -16,8 +16,8 @@ class ApiTestMixin:
url: str, url: str,
method: str = 'POST', method: str = 'POST',
body: typing.Optional[bytes] = None, body: typing.Optional[bytes] = None,
content_type: typing.Optional[str] = 'application/json', content_type: typing.Optional[str] = None,
accept_content_type: typing.Optional[str] = 'application/json', accept_content_type: typing.Optional[str] = None,
stream: bool = False, stream: bool = False,
): ):
headers = { headers = {

View File

@ -35,11 +35,56 @@ class {{#with operations}}Test{{classname}}(ApiTestMixin, unittest.TestCase):
""" """
from {{packageName}}.{{apiPackage}}.{{classFilename}}_endpoints import {{operationId}} as endpoint_module from {{packageName}}.{{apiPackage}}.{{classFilename}}_endpoints import {{operationId}} as endpoint_module
{{#each responses}} {{#each responses}}
{{#if @first}} {{#if @first}}
response_status = {{code}} response_status = {{code}}
{{#if content}} {{#if content}}
{{#each content}} {{#each content}}
# TODO get response content working accept_content_type = '{{{@key}}}'
{{#if this.testCases}}
{{#each testCases}}
{{#with this }}
# test_{{@key}}_{{#if valid}}passes{{else}}fails{{/if}}
# {{description}}
with patch.object(urllib3.PoolManager, 'request') as mock_request:
payload = (
{{#with data}}
{{> model_templates/payload_renderer endChar='' }}
{{/with}}
)
mock_request.return_value = self.response(
self.json_bytes(payload),
status=response_status
)
{{#if valid}}
{{> api_test_partial }}
assert isinstance(api_response.response, urllib3.HTTPResponse)
assert isinstance(api_response.body, endpoint_module.{{schema.baseName}})
deserialized_response_body = endpoint_module.{{schema.baseName}}._from_openapi_data(
payload,
_configuration=self._configuration
)
assert api_response.body == deserialized_response_body
{{else}}
with self.assertRaises(({{packageName}}.ApiValueError, {{packageName}}.ApiTypeError)):
self.api.{{operationId}}(
accept_content_types=(accept_content_type,)
)
self.assert_pool_manager_request_called_with(
mock_request,
self._configuration.host + '{{{path}}}',
method='{{httpMethod}}',
content_type=None,
accept_content_type=accept_content_type,
)
{{/if}}
{{/with}}
{{/each}}
{{/if}}
{{/each}} {{/each}}
{{else}} {{else}}
response_body = '' response_body = ''
@ -58,46 +103,28 @@ class {{#with operations}}Test{{classname}}(ApiTestMixin, unittest.TestCase):
# test_{{@key}}_{{#if valid}}passes{{else}}fails{{/if}} # test_{{@key}}_{{#if valid}}passes{{else}}fails{{/if}}
# {{description}} # {{description}}
with patch.object(urllib3.PoolManager, 'request') as mock_request: with patch.object(urllib3.PoolManager, 'request') as mock_request:
request_payload = ( payload = (
{{#with data}} {{#with data}}
{{> model_templates/payload_renderer endChar='' }} {{> model_templates/payload_renderer endChar='' }}
{{/with}} {{/with}}
) )
{{#if valid}} {{#if valid}}
body = endpoint_module.{{schema.baseName}}._from_openapi_data( body = endpoint_module.{{schema.baseName}}._from_openapi_data(
{{#with data}} payload,
request_payload,
{{/with}}
_configuration=self._configuration _configuration=self._configuration
) )
mock_request.return_value = self.response( mock_request.return_value = self.response(
self.json_bytes(response_body), self.json_bytes(response_body),
status=response_status status=response_status
) )
api_response = self.api.{{operationId}}( {{> api_test_partial }}
body=body,
content_type=content_type
)
self.assert_pool_manager_request_called_with(
mock_request,
self._configuration.host + '{{{path}}}',
method='{{httpMethod}}',
body=self.json_bytes(request_payload),
content_type=content_type,
{{#unless produces}}
accept_content_type=None,
{{/unless}}
)
assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.response, urllib3.HTTPResponse)
# TODO if response body is unset check that it is unset here
assert isinstance(api_response.body, schemas.Unset) assert isinstance(api_response.body, schemas.Unset)
{{else}} {{else}}
with self.assertRaises(({{packageName}}.ApiValueError, {{packageName}}.ApiTypeError)): with self.assertRaises(({{packageName}}.ApiValueError, {{packageName}}.ApiTypeError)):
body = endpoint_module.{{schema.baseName}}._from_openapi_data( body = endpoint_module.{{schema.baseName}}._from_openapi_data(
{{#with data}} payload,
{{> model_templates/payload_renderer endChar=',' }}
{{/with}}
_configuration=self._configuration _configuration=self._configuration
) )
self.api.{{operationId}}(body=body) self.api.{{operationId}}(body=body)
@ -112,7 +139,7 @@ class {{#with operations}}Test{{classname}}(ApiTestMixin, unittest.TestCase):
{{/with}} {{/with}}
{{else}} {{else}}
pass pass
{{/if}} {{/if}}
{{/each}} {{/each}}
{{/with}} {{/with}}

View File

@ -0,0 +1,21 @@
api_response = self.api.{{operationId}}(
{{#if bodyParam}}
body=body,
content_type=content_type
{{/if}}
{{#if produces}}
accept_content_types=(accept_content_type,)
{{/if}}
)
self.assert_pool_manager_request_called_with(
mock_request,
self._configuration.host + '{{{path}}}',
method='{{httpMethod}}',
{{#if bodyParam}}
body=self.json_bytes(payload),
content_type=content_type,
{{/if}}
{{#if produces}}
accept_content_type=accept_content_type,
{{/if}}
)

View File

@ -1102,9 +1102,6 @@ class DictBase(Discriminable):
ApiValueError: when a string can't be converted into a date or datetime and it must be one of those classes ApiValueError: when a string can't be converted into a date or datetime and it must be one of those classes
ApiTypeError: when the input type is not in the list of allowed spec types ApiTypeError: when the input type is not in the list of allowed spec types
""" """
if isinstance(arg, cls):
# an instance of the correct type was passed in
return {}
_path_to_schemas = super()._validate(arg, validation_metadata=validation_metadata) _path_to_schemas = super()._validate(arg, validation_metadata=validation_metadata)
if not isinstance(arg, frozendict): if not isinstance(arg, frozendict):
return _path_to_schemas return _path_to_schemas
@ -1655,18 +1652,6 @@ class ComposedBase(Discriminable):
ApiValueError: when a string can't be converted into a date or datetime and it must be one of those classes ApiValueError: when a string can't be converted into a date or datetime and it must be one of those classes
ApiTypeError: when the input type is not in the list of allowed spec types ApiTypeError: when the input type is not in the list of allowed spec types
""" """
if isinstance(arg, Schema) and validation_metadata.from_server is False:
if isinstance(arg, cls):
# an instance of the correct type was passed in
return {}
raise ApiTypeError(
'Incorrect type passed in, required type was {} and passed type was {} at {}'.format(
cls,
type(arg),
validation_metadata.path_to_item
)
)
# validation checking on types, validations, and enums # validation checking on types, validations, and enums
path_to_schemas = super()._validate(arg, validation_metadata=validation_metadata) path_to_schemas = super()._validate(arg, validation_metadata=validation_metadata)
@ -2098,43 +2083,6 @@ class DictSchema(
schema_type_classes = set([NoneSchema, DictSchema, ListSchema, NumberSchema, StrSchema, BoolSchema]) schema_type_classes = set([NoneSchema, DictSchema, ListSchema, NumberSchema, StrSchema, BoolSchema])
def deserialize_file(response_data, configuration, content_disposition=None):
"""Deserializes body to file
Saves response body into a file in a temporary folder,
using the filename from the `Content-Disposition` header if provided.
Args:
param response_data (str): the file data to write
configuration (Configuration): the instance to use to convert files
Keyword Args:
content_disposition (str): the value of the Content-Disposition
header
Returns:
(file_type): the deserialized file which is open
The user is responsible for closing and reading the file
"""
fd, path = tempfile.mkstemp(dir=configuration.temp_folder_path)
os.close(fd)
os.remove(path)
if content_disposition:
filename = re.search(r'filename=[\'"]?([^\'"\s]+)[\'"]?',
content_disposition).group(1)
path = os.path.join(os.path.dirname(path), filename)
with open(path, "wb") as f:
if isinstance(response_data, str):
# change str to bytes so we can write it
response_data = response_data.encode('utf-8')
f.write(response_data)
f = open(path, "rb")
return f
@functools.cache @functools.cache
def get_new_class( def get_new_class(
class_name: str, class_name: str,

View File

@ -0,0 +1,18 @@
[
{
"description": "additionalProperties should not look in applicators",
"schema": {
"allOf": [
{"properties": {"foo": {}}}
],
"additionalProperties": {"type": "boolean"}
},
"tests": [
{
"description": "valid test case",
"data": {"foo": false, "bar": true},
"valid": true
}
]
}
]

View File

@ -0,0 +1,13 @@
[
{
"description": "invalid instance should not raise error when float division = inf",
"schema": {"type": "integer", "multipleOf": 0.123456789},
"tests": [
{
"description": "valid integer with multipleOf float",
"data": 123456789,
"valid": true
}
]
}
]

View File

@ -227,7 +227,7 @@ FILEPATH_TO_EXCLUDE_REASON = {
JSON_SCHEMA_TEST_FILE_TO_FOLDERS = { JSON_SCHEMA_TEST_FILE_TO_FOLDERS = {
'additionalItems.json': (json_schema_test_draft,), 'additionalItems.json': (json_schema_test_draft,),
'additionalProperties.json': (json_schema_test_draft,), 'additionalProperties.json': (json_schema_test_draft, openapi_additions),
'allOf.json': (json_schema_test_draft,), 'allOf.json': (json_schema_test_draft,),
'anyOf.json': (json_schema_test_draft,), 'anyOf.json': (json_schema_test_draft,),
'boolean_schema.json': (json_schema_test_draft,), 'boolean_schema.json': (json_schema_test_draft,),
@ -251,7 +251,7 @@ JSON_SCHEMA_TEST_FILE_TO_FOLDERS = {
'minItems.json': (json_schema_test_draft,), 'minItems.json': (json_schema_test_draft,),
'minLength.json': (json_schema_test_draft,), 'minLength.json': (json_schema_test_draft,),
'minProperties.json': (json_schema_test_draft,), 'minProperties.json': (json_schema_test_draft,),
'multipleOf.json': (json_schema_test_draft,), 'multipleOf.json': (json_schema_test_draft, openapi_additions),
'not.json': (json_schema_test_draft,), 'not.json': (json_schema_test_draft,),
'oneOf.json': (json_schema_test_draft,), 'oneOf.json': (json_schema_test_draft,),
'pattern.json': (json_schema_test_draft,), 'pattern.json': (json_schema_test_draft,),
@ -461,12 +461,43 @@ def generate_post_operation_with_request_body(
} }
) )
def generate_post_operation_with_response_content_schema(
component_name: str,
tags: typing.List[OpenApiTag]
) -> OpenApiOperation:
method = 'post'
ref_schema_path = f'#/components/schemas/{component_name}'
ref_test_example_path = f'#/components/x-schema-test-examples/{component_name}'
media_type = OpenApiMediaType(
{
'schema': OpenApiSchema({'$ref': ref_schema_path}),
'x-schema-test-examples': {'$ref': ref_test_example_path}
}
)
operationId = f'{method}{component_name}ResponseBodyForContentTypes'
response_object = OpenApiResponseObject(
{
'description': 'success',
'content': {'application/json': media_type}
}
)
return OpenApiOperation(
{
'operationId': operationId,
'responses': {'200': response_object},
'tags': [tag.name for tag in tags]
}
)
def write_openapi_spec(): def write_openapi_spec():
openapi = get_new_openapi() openapi = get_new_openapi()
request_body_tag = OpenApiTag(name='requestBody') request_body_tag = OpenApiTag(name='operation.requestBody')
post_tag = OpenApiTag(name='post') post_tag = OpenApiTag(name='path.post')
json_tag = OpenApiTag(name='json') json_tag = OpenApiTag(name='contentType_json')
openapi.tags.append(request_body_tag) response_content_tag = OpenApiTag(name='response.content.contentType.schema')
openapi.tags.extend([request_body_tag, post_tag, json_tag])
# write component schemas and tests # write component schemas and tests
for json_schema_test_file, folders in JSON_SCHEMA_TEST_FILE_TO_FOLDERS.items(): for json_schema_test_file, folders in JSON_SCHEMA_TEST_FILE_TO_FOLDERS.items():
component_schemas, component_name_to_test_examples = ( component_schemas, component_name_to_test_examples = (
@ -484,8 +515,12 @@ def write_openapi_spec():
operation = generate_post_operation_with_request_body(component_name, [request_body_tag, post_tag, json_tag]) operation = generate_post_operation_with_request_body(component_name, [request_body_tag, post_tag, json_tag])
path_item = OpenApiPathItem(post=operation) path_item = OpenApiPathItem(post=operation)
openapi.paths[f'/requestBody/{operation["operationId"]}'] = path_item openapi.paths[f'/requestBody/{operation["operationId"]}'] = path_item
# todo add put and patch with paths requestBody/someIdentifier # todo add put and patch with paths requestBody/someIdentifier
operation = generate_post_operation_with_response_content_schema(component_name, [response_content_tag, post_tag, json_tag])
path_item = OpenApiPathItem(post=operation)
openapi.paths[f'/responseBody/{operation["operationId"]}'] = path_item
print( print(
yaml.dump( yaml.dump(
dataclasses.asdict(openapi), dataclasses.asdict(openapi),

View File

@ -23,6 +23,7 @@ docs/BooleanTypeMatchesBooleans.md
docs/ByInt.md docs/ByInt.md
docs/ByNumber.md docs/ByNumber.md
docs/BySmallNumber.md docs/BySmallNumber.md
docs/ContentTypeJsonApi.md
docs/DateTimeFormat.md docs/DateTimeFormat.md
docs/EmailFormat.md docs/EmailFormat.md
docs/EnumWith0DoesNotMatchFalse.md docs/EnumWith0DoesNotMatchFalse.md
@ -38,7 +39,6 @@ docs/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md
docs/InvalidStringValueForDefault.md docs/InvalidStringValueForDefault.md
docs/Ipv4Format.md docs/Ipv4Format.md
docs/Ipv6Format.md docs/Ipv6Format.md
docs/JsonApi.md
docs/JsonPointerFormat.md docs/JsonPointerFormat.md
docs/MaximumValidation.md docs/MaximumValidation.md
docs/MaximumValidationWithUnsignedInteger.md docs/MaximumValidationWithUnsignedInteger.md
@ -65,9 +65,10 @@ docs/Oneof.md
docs/OneofComplexTypes.md docs/OneofComplexTypes.md
docs/OneofWithBaseSchema.md docs/OneofWithBaseSchema.md
docs/OneofWithEmptySchema.md docs/OneofWithEmptySchema.md
docs/OperationRequestBodyApi.md
docs/PathPostApi.md
docs/PatternIsNotAnchored.md docs/PatternIsNotAnchored.md
docs/PatternValidation.md docs/PatternValidation.md
docs/PostApi.md
docs/PropertiesWithEscapedCharacters.md docs/PropertiesWithEscapedCharacters.md
docs/PropertyNamedRefThatIsNotAReference.md docs/PropertyNamedRefThatIsNotAReference.md
docs/RefInAdditionalproperties.md docs/RefInAdditionalproperties.md
@ -76,10 +77,10 @@ docs/RefInAnyof.md
docs/RefInItems.md docs/RefInItems.md
docs/RefInOneof.md docs/RefInOneof.md
docs/RefInProperty.md docs/RefInProperty.md
docs/RequestBodyApi.md
docs/RequiredDefaultValidation.md docs/RequiredDefaultValidation.md
docs/RequiredValidation.md docs/RequiredValidation.md
docs/RequiredWithEmptyArray.md docs/RequiredWithEmptyArray.md
docs/ResponseContentContentTypeSchemaApi.md
docs/SimpleEnumValidation.md docs/SimpleEnumValidation.md
docs/StringTypeMatchesStrings.md docs/StringTypeMatchesStrings.md
docs/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md docs/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md
@ -115,6 +116,7 @@ test/test_boolean_type_matches_booleans.py
test/test_by_int.py test/test_by_int.py
test/test_by_number.py test/test_by_number.py
test/test_by_small_number.py test/test_by_small_number.py
test/test_content_type_json_api.py
test/test_date_time_format.py test/test_date_time_format.py
test/test_email_format.py test/test_email_format.py
test/test_enum_with0_does_not_match_false.py test/test_enum_with0_does_not_match_false.py
@ -130,7 +132,6 @@ test/test_invalid_instance_should_not_raise_error_when_float_division_inf.py
test/test_invalid_string_value_for_default.py test/test_invalid_string_value_for_default.py
test/test_ipv4_format.py test/test_ipv4_format.py
test/test_ipv6_format.py test/test_ipv6_format.py
test/test_json_api.py
test/test_json_pointer_format.py test/test_json_pointer_format.py
test/test_maximum_validation.py test/test_maximum_validation.py
test/test_maximum_validation_with_unsigned_integer.py test/test_maximum_validation_with_unsigned_integer.py
@ -157,9 +158,10 @@ test/test_oneof.py
test/test_oneof_complex_types.py test/test_oneof_complex_types.py
test/test_oneof_with_base_schema.py test/test_oneof_with_base_schema.py
test/test_oneof_with_empty_schema.py test/test_oneof_with_empty_schema.py
test/test_operation_request_body_api.py
test/test_path_post_api.py
test/test_pattern_is_not_anchored.py test/test_pattern_is_not_anchored.py
test/test_pattern_validation.py test/test_pattern_validation.py
test/test_post_api.py
test/test_properties_with_escaped_characters.py test/test_properties_with_escaped_characters.py
test/test_property_named_ref_that_is_not_a_reference.py test/test_property_named_ref_that_is_not_a_reference.py
test/test_ref_in_additionalproperties.py test/test_ref_in_additionalproperties.py
@ -168,10 +170,10 @@ test/test_ref_in_anyof.py
test/test_ref_in_items.py test/test_ref_in_items.py
test/test_ref_in_oneof.py test/test_ref_in_oneof.py
test/test_ref_in_property.py test/test_ref_in_property.py
test/test_request_body_api.py
test/test_required_default_validation.py test/test_required_default_validation.py
test/test_required_validation.py test/test_required_validation.py
test/test_required_with_empty_array.py test/test_required_with_empty_array.py
test/test_response_content_content_type_schema_api.py
test/test_simple_enum_validation.py test/test_simple_enum_validation.py
test/test_string_type_matches_strings.py test/test_string_type_matches_strings.py
test/test_the_default_keyword_does_not_do_anything_if_the_property_is_missing.py test/test_the_default_keyword_does_not_do_anything_if_the_property_is_missing.py
@ -183,9 +185,10 @@ test/test_uri_template_format.py
tox.ini tox.ini
unit_test_api/__init__.py unit_test_api/__init__.py
unit_test_api/api/__init__.py unit_test_api/api/__init__.py
unit_test_api/api/json_api.py unit_test_api/api/content_type_json_api.py
unit_test_api/api/post_api.py unit_test_api/api/operation_request_body_api.py
unit_test_api/api/request_body_api.py unit_test_api/api/path_post_api.py
unit_test_api/api/response_content_content_type_schema_api.py
unit_test_api/api_client.py unit_test_api/api_client.py
unit_test_api/apis/__init__.py unit_test_api/apis/__init__.py
unit_test_api/configuration.py unit_test_api/configuration.py

View File

@ -51,7 +51,7 @@ Please follow the [installation procedure](#installation--usage) and then run th
import time import time
import unit_test_api import unit_test_api
from pprint import pprint from pprint import pprint
from unit_test_api.api import json_api from unit_test_api.api import content_type_json_api
from unit_test_api.model.additionalproperties_allows_a_schema_which_should_validate import AdditionalpropertiesAllowsASchemaWhichShouldValidate from unit_test_api.model.additionalproperties_allows_a_schema_which_should_validate import AdditionalpropertiesAllowsASchemaWhichShouldValidate
from unit_test_api.model.additionalproperties_are_allowed_by_default import AdditionalpropertiesAreAllowedByDefault from unit_test_api.model.additionalproperties_are_allowed_by_default import AdditionalpropertiesAreAllowedByDefault
from unit_test_api.model.additionalproperties_can_exist_by_itself import AdditionalpropertiesCanExistByItself from unit_test_api.model.additionalproperties_can_exist_by_itself import AdditionalpropertiesCanExistByItself
@ -129,7 +129,7 @@ configuration = unit_test_api.Configuration(
# Enter a context with an instance of the API client # Enter a context with an instance of the API client
with unit_test_api.ApiClient(configuration) as api_client: with unit_test_api.ApiClient(configuration) as api_client:
# Create an instance of the API class # Create an instance of the API class
api_instance = json_api.JsonApi(api_client) api_instance = content_type_json_api.ContentTypeJsonApi(api_client)
additionalproperties_allows_a_schema_which_should_validate = AdditionalpropertiesAllowsASchemaWhichShouldValidate( additionalproperties_allows_a_schema_which_should_validate = AdditionalpropertiesAllowsASchemaWhichShouldValidate(
foo=None, foo=None,
bar=None, bar=None,
@ -138,7 +138,7 @@ with unit_test_api.ApiClient(configuration) as api_client:
try: try:
api_instance.post_additionalproperties_allows_a_schema_which_should_validate_request_body(additionalproperties_allows_a_schema_which_should_validate) api_instance.post_additionalproperties_allows_a_schema_which_should_validate_request_body(additionalproperties_allows_a_schema_which_should_validate)
except unit_test_api.ApiException as e: except unit_test_api.ApiException as e:
print("Exception when calling JsonApi->post_additionalproperties_allows_a_schema_which_should_validate_request_body: %s\n" % e) print("Exception when calling ContentTypeJsonApi->post_additionalproperties_allows_a_schema_which_should_validate_request_body: %s\n" % e)
``` ```
## Documentation for API Endpoints ## Documentation for API Endpoints
@ -147,258 +147,510 @@ All URIs are relative to *https://someserver.com/v1*
Class | Method | HTTP request | Description Class | Method | HTTP request | Description
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
*JsonApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_request_body**](docs/JsonApi.md#post_additionalproperties_allows_a_schema_which_should_validate_request_body) | **POST** /requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_request_body**](docs/ContentTypeJsonApi.md#post_additionalproperties_allows_a_schema_which_should_validate_request_body) | **POST** /requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody |
*JsonApi* | [**post_additionalproperties_are_allowed_by_default_request_body**](docs/JsonApi.md#post_additionalproperties_are_allowed_by_default_request_body) | **POST** /requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes |
*JsonApi* | [**post_additionalproperties_can_exist_by_itself_request_body**](docs/JsonApi.md#post_additionalproperties_can_exist_by_itself_request_body) | **POST** /requestBody/postAdditionalpropertiesCanExistByItselfRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_are_allowed_by_default_request_body**](docs/ContentTypeJsonApi.md#post_additionalproperties_are_allowed_by_default_request_body) | **POST** /requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody |
*JsonApi* | [**post_additionalproperties_should_not_look_in_applicators_request_body**](docs/JsonApi.md#post_additionalproperties_should_not_look_in_applicators_request_body) | **POST** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_are_allowed_by_default_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_additionalproperties_are_allowed_by_default_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes |
*JsonApi* | [**post_allof_combined_with_anyof_oneof_request_body**](docs/JsonApi.md#post_allof_combined_with_anyof_oneof_request_body) | **POST** /requestBody/postAllofCombinedWithAnyofOneofRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_can_exist_by_itself_request_body**](docs/ContentTypeJsonApi.md#post_additionalproperties_can_exist_by_itself_request_body) | **POST** /requestBody/postAdditionalpropertiesCanExistByItselfRequestBody |
*JsonApi* | [**post_allof_request_body**](docs/JsonApi.md#post_allof_request_body) | **POST** /requestBody/postAllofRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_can_exist_by_itself_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_additionalproperties_can_exist_by_itself_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes |
*JsonApi* | [**post_allof_simple_types_request_body**](docs/JsonApi.md#post_allof_simple_types_request_body) | **POST** /requestBody/postAllofSimpleTypesRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_should_not_look_in_applicators_request_body**](docs/ContentTypeJsonApi.md#post_additionalproperties_should_not_look_in_applicators_request_body) | **POST** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody |
*JsonApi* | [**post_allof_with_base_schema_request_body**](docs/JsonApi.md#post_allof_with_base_schema_request_body) | **POST** /requestBody/postAllofWithBaseSchemaRequestBody | *ContentTypeJsonApi* | [**post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes |
*JsonApi* | [**post_allof_with_one_empty_schema_request_body**](docs/JsonApi.md#post_allof_with_one_empty_schema_request_body) | **POST** /requestBody/postAllofWithOneEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_allof_combined_with_anyof_oneof_request_body**](docs/ContentTypeJsonApi.md#post_allof_combined_with_anyof_oneof_request_body) | **POST** /requestBody/postAllofCombinedWithAnyofOneofRequestBody |
*JsonApi* | [**post_allof_with_the_first_empty_schema_request_body**](docs/JsonApi.md#post_allof_with_the_first_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheFirstEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_allof_combined_with_anyof_oneof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_combined_with_anyof_oneof_response_body_for_content_types) | **POST** /responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes |
*JsonApi* | [**post_allof_with_the_last_empty_schema_request_body**](docs/JsonApi.md#post_allof_with_the_last_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheLastEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_allof_request_body**](docs/ContentTypeJsonApi.md#post_allof_request_body) | **POST** /requestBody/postAllofRequestBody |
*JsonApi* | [**post_allof_with_two_empty_schemas_request_body**](docs/JsonApi.md#post_allof_with_two_empty_schemas_request_body) | **POST** /requestBody/postAllofWithTwoEmptySchemasRequestBody | *ContentTypeJsonApi* | [**post_allof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_response_body_for_content_types) | **POST** /responseBody/postAllofResponseBodyForContentTypes |
*JsonApi* | [**post_anyof_complex_types_request_body**](docs/JsonApi.md#post_anyof_complex_types_request_body) | **POST** /requestBody/postAnyofComplexTypesRequestBody | *ContentTypeJsonApi* | [**post_allof_simple_types_request_body**](docs/ContentTypeJsonApi.md#post_allof_simple_types_request_body) | **POST** /requestBody/postAllofSimpleTypesRequestBody |
*JsonApi* | [**post_anyof_request_body**](docs/JsonApi.md#post_anyof_request_body) | **POST** /requestBody/postAnyofRequestBody | *ContentTypeJsonApi* | [**post_allof_simple_types_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_simple_types_response_body_for_content_types) | **POST** /responseBody/postAllofSimpleTypesResponseBodyForContentTypes |
*JsonApi* | [**post_anyof_with_base_schema_request_body**](docs/JsonApi.md#post_anyof_with_base_schema_request_body) | **POST** /requestBody/postAnyofWithBaseSchemaRequestBody | *ContentTypeJsonApi* | [**post_allof_with_base_schema_request_body**](docs/ContentTypeJsonApi.md#post_allof_with_base_schema_request_body) | **POST** /requestBody/postAllofWithBaseSchemaRequestBody |
*JsonApi* | [**post_anyof_with_one_empty_schema_request_body**](docs/JsonApi.md#post_anyof_with_one_empty_schema_request_body) | **POST** /requestBody/postAnyofWithOneEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_allof_with_base_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes |
*JsonApi* | [**post_array_type_matches_arrays_request_body**](docs/JsonApi.md#post_array_type_matches_arrays_request_body) | **POST** /requestBody/postArrayTypeMatchesArraysRequestBody | *ContentTypeJsonApi* | [**post_allof_with_one_empty_schema_request_body**](docs/ContentTypeJsonApi.md#post_allof_with_one_empty_schema_request_body) | **POST** /requestBody/postAllofWithOneEmptySchemaRequestBody |
*JsonApi* | [**post_boolean_type_matches_booleans_request_body**](docs/JsonApi.md#post_boolean_type_matches_booleans_request_body) | **POST** /requestBody/postBooleanTypeMatchesBooleansRequestBody | *ContentTypeJsonApi* | [**post_allof_with_one_empty_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_with_one_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes |
*JsonApi* | [**post_by_int_request_body**](docs/JsonApi.md#post_by_int_request_body) | **POST** /requestBody/postByIntRequestBody | *ContentTypeJsonApi* | [**post_allof_with_the_first_empty_schema_request_body**](docs/ContentTypeJsonApi.md#post_allof_with_the_first_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheFirstEmptySchemaRequestBody |
*JsonApi* | [**post_by_number_request_body**](docs/JsonApi.md#post_by_number_request_body) | **POST** /requestBody/postByNumberRequestBody | *ContentTypeJsonApi* | [**post_allof_with_the_first_empty_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_with_the_first_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes |
*JsonApi* | [**post_by_small_number_request_body**](docs/JsonApi.md#post_by_small_number_request_body) | **POST** /requestBody/postBySmallNumberRequestBody | *ContentTypeJsonApi* | [**post_allof_with_the_last_empty_schema_request_body**](docs/ContentTypeJsonApi.md#post_allof_with_the_last_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheLastEmptySchemaRequestBody |
*JsonApi* | [**post_date_time_format_request_body**](docs/JsonApi.md#post_date_time_format_request_body) | **POST** /requestBody/postDateTimeFormatRequestBody | *ContentTypeJsonApi* | [**post_allof_with_the_last_empty_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_with_the_last_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes |
*JsonApi* | [**post_email_format_request_body**](docs/JsonApi.md#post_email_format_request_body) | **POST** /requestBody/postEmailFormatRequestBody | *ContentTypeJsonApi* | [**post_allof_with_two_empty_schemas_request_body**](docs/ContentTypeJsonApi.md#post_allof_with_two_empty_schemas_request_body) | **POST** /requestBody/postAllofWithTwoEmptySchemasRequestBody |
*JsonApi* | [**post_enum_with0_does_not_match_false_request_body**](docs/JsonApi.md#post_enum_with0_does_not_match_false_request_body) | **POST** /requestBody/postEnumWith0DoesNotMatchFalseRequestBody | *ContentTypeJsonApi* | [**post_allof_with_two_empty_schemas_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_allof_with_two_empty_schemas_response_body_for_content_types) | **POST** /responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes |
*JsonApi* | [**post_enum_with1_does_not_match_true_request_body**](docs/JsonApi.md#post_enum_with1_does_not_match_true_request_body) | **POST** /requestBody/postEnumWith1DoesNotMatchTrueRequestBody | *ContentTypeJsonApi* | [**post_anyof_complex_types_request_body**](docs/ContentTypeJsonApi.md#post_anyof_complex_types_request_body) | **POST** /requestBody/postAnyofComplexTypesRequestBody |
*JsonApi* | [**post_enum_with_escaped_characters_request_body**](docs/JsonApi.md#post_enum_with_escaped_characters_request_body) | **POST** /requestBody/postEnumWithEscapedCharactersRequestBody | *ContentTypeJsonApi* | [**post_anyof_complex_types_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_anyof_complex_types_response_body_for_content_types) | **POST** /responseBody/postAnyofComplexTypesResponseBodyForContentTypes |
*JsonApi* | [**post_enum_with_false_does_not_match0_request_body**](docs/JsonApi.md#post_enum_with_false_does_not_match0_request_body) | **POST** /requestBody/postEnumWithFalseDoesNotMatch0RequestBody | *ContentTypeJsonApi* | [**post_anyof_request_body**](docs/ContentTypeJsonApi.md#post_anyof_request_body) | **POST** /requestBody/postAnyofRequestBody |
*JsonApi* | [**post_enum_with_true_does_not_match1_request_body**](docs/JsonApi.md#post_enum_with_true_does_not_match1_request_body) | **POST** /requestBody/postEnumWithTrueDoesNotMatch1RequestBody | *ContentTypeJsonApi* | [**post_anyof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_anyof_response_body_for_content_types) | **POST** /responseBody/postAnyofResponseBodyForContentTypes |
*JsonApi* | [**post_enums_in_properties_request_body**](docs/JsonApi.md#post_enums_in_properties_request_body) | **POST** /requestBody/postEnumsInPropertiesRequestBody | *ContentTypeJsonApi* | [**post_anyof_with_base_schema_request_body**](docs/ContentTypeJsonApi.md#post_anyof_with_base_schema_request_body) | **POST** /requestBody/postAnyofWithBaseSchemaRequestBody |
*JsonApi* | [**post_forbidden_property_request_body**](docs/JsonApi.md#post_forbidden_property_request_body) | **POST** /requestBody/postForbiddenPropertyRequestBody | *ContentTypeJsonApi* | [**post_anyof_with_base_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_anyof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes |
*JsonApi* | [**post_hostname_format_request_body**](docs/JsonApi.md#post_hostname_format_request_body) | **POST** /requestBody/postHostnameFormatRequestBody | *ContentTypeJsonApi* | [**post_anyof_with_one_empty_schema_request_body**](docs/ContentTypeJsonApi.md#post_anyof_with_one_empty_schema_request_body) | **POST** /requestBody/postAnyofWithOneEmptySchemaRequestBody |
*JsonApi* | [**post_integer_type_matches_integers_request_body**](docs/JsonApi.md#post_integer_type_matches_integers_request_body) | **POST** /requestBody/postIntegerTypeMatchesIntegersRequestBody | *ContentTypeJsonApi* | [**post_anyof_with_one_empty_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_anyof_with_one_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes |
*JsonApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](docs/JsonApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body) | **POST** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody | *ContentTypeJsonApi* | [**post_array_type_matches_arrays_request_body**](docs/ContentTypeJsonApi.md#post_array_type_matches_arrays_request_body) | **POST** /requestBody/postArrayTypeMatchesArraysRequestBody |
*JsonApi* | [**post_invalid_string_value_for_default_request_body**](docs/JsonApi.md#post_invalid_string_value_for_default_request_body) | **POST** /requestBody/postInvalidStringValueForDefaultRequestBody | *ContentTypeJsonApi* | [**post_array_type_matches_arrays_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_array_type_matches_arrays_response_body_for_content_types) | **POST** /responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes |
*JsonApi* | [**post_ipv4_format_request_body**](docs/JsonApi.md#post_ipv4_format_request_body) | **POST** /requestBody/postIpv4FormatRequestBody | *ContentTypeJsonApi* | [**post_boolean_type_matches_booleans_request_body**](docs/ContentTypeJsonApi.md#post_boolean_type_matches_booleans_request_body) | **POST** /requestBody/postBooleanTypeMatchesBooleansRequestBody |
*JsonApi* | [**post_ipv6_format_request_body**](docs/JsonApi.md#post_ipv6_format_request_body) | **POST** /requestBody/postIpv6FormatRequestBody | *ContentTypeJsonApi* | [**post_boolean_type_matches_booleans_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_boolean_type_matches_booleans_response_body_for_content_types) | **POST** /responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes |
*JsonApi* | [**post_json_pointer_format_request_body**](docs/JsonApi.md#post_json_pointer_format_request_body) | **POST** /requestBody/postJsonPointerFormatRequestBody | *ContentTypeJsonApi* | [**post_by_int_request_body**](docs/ContentTypeJsonApi.md#post_by_int_request_body) | **POST** /requestBody/postByIntRequestBody |
*JsonApi* | [**post_maximum_validation_request_body**](docs/JsonApi.md#post_maximum_validation_request_body) | **POST** /requestBody/postMaximumValidationRequestBody | *ContentTypeJsonApi* | [**post_by_int_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_by_int_response_body_for_content_types) | **POST** /responseBody/postByIntResponseBodyForContentTypes |
*JsonApi* | [**post_maximum_validation_with_unsigned_integer_request_body**](docs/JsonApi.md#post_maximum_validation_with_unsigned_integer_request_body) | **POST** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody | *ContentTypeJsonApi* | [**post_by_number_request_body**](docs/ContentTypeJsonApi.md#post_by_number_request_body) | **POST** /requestBody/postByNumberRequestBody |
*JsonApi* | [**post_maxitems_validation_request_body**](docs/JsonApi.md#post_maxitems_validation_request_body) | **POST** /requestBody/postMaxitemsValidationRequestBody | *ContentTypeJsonApi* | [**post_by_number_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_by_number_response_body_for_content_types) | **POST** /responseBody/postByNumberResponseBodyForContentTypes |
*JsonApi* | [**post_maxlength_validation_request_body**](docs/JsonApi.md#post_maxlength_validation_request_body) | **POST** /requestBody/postMaxlengthValidationRequestBody | *ContentTypeJsonApi* | [**post_by_small_number_request_body**](docs/ContentTypeJsonApi.md#post_by_small_number_request_body) | **POST** /requestBody/postBySmallNumberRequestBody |
*JsonApi* | [**post_maxproperties0_means_the_object_is_empty_request_body**](docs/JsonApi.md#post_maxproperties0_means_the_object_is_empty_request_body) | **POST** /requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody | *ContentTypeJsonApi* | [**post_by_small_number_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_by_small_number_response_body_for_content_types) | **POST** /responseBody/postBySmallNumberResponseBodyForContentTypes |
*JsonApi* | [**post_maxproperties_validation_request_body**](docs/JsonApi.md#post_maxproperties_validation_request_body) | **POST** /requestBody/postMaxpropertiesValidationRequestBody | *ContentTypeJsonApi* | [**post_date_time_format_request_body**](docs/ContentTypeJsonApi.md#post_date_time_format_request_body) | **POST** /requestBody/postDateTimeFormatRequestBody |
*JsonApi* | [**post_minimum_validation_request_body**](docs/JsonApi.md#post_minimum_validation_request_body) | **POST** /requestBody/postMinimumValidationRequestBody | *ContentTypeJsonApi* | [**post_date_time_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_date_time_format_response_body_for_content_types) | **POST** /responseBody/postDateTimeFormatResponseBodyForContentTypes |
*JsonApi* | [**post_minimum_validation_with_signed_integer_request_body**](docs/JsonApi.md#post_minimum_validation_with_signed_integer_request_body) | **POST** /requestBody/postMinimumValidationWithSignedIntegerRequestBody | *ContentTypeJsonApi* | [**post_email_format_request_body**](docs/ContentTypeJsonApi.md#post_email_format_request_body) | **POST** /requestBody/postEmailFormatRequestBody |
*JsonApi* | [**post_minitems_validation_request_body**](docs/JsonApi.md#post_minitems_validation_request_body) | **POST** /requestBody/postMinitemsValidationRequestBody | *ContentTypeJsonApi* | [**post_email_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_email_format_response_body_for_content_types) | **POST** /responseBody/postEmailFormatResponseBodyForContentTypes |
*JsonApi* | [**post_minlength_validation_request_body**](docs/JsonApi.md#post_minlength_validation_request_body) | **POST** /requestBody/postMinlengthValidationRequestBody | *ContentTypeJsonApi* | [**post_enum_with0_does_not_match_false_request_body**](docs/ContentTypeJsonApi.md#post_enum_with0_does_not_match_false_request_body) | **POST** /requestBody/postEnumWith0DoesNotMatchFalseRequestBody |
*JsonApi* | [**post_minproperties_validation_request_body**](docs/JsonApi.md#post_minproperties_validation_request_body) | **POST** /requestBody/postMinpropertiesValidationRequestBody | *ContentTypeJsonApi* | [**post_enum_with0_does_not_match_false_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_enum_with0_does_not_match_false_response_body_for_content_types) | **POST** /responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes |
*JsonApi* | [**post_nested_allof_to_check_validation_semantics_request_body**](docs/JsonApi.md#post_nested_allof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody | *ContentTypeJsonApi* | [**post_enum_with1_does_not_match_true_request_body**](docs/ContentTypeJsonApi.md#post_enum_with1_does_not_match_true_request_body) | **POST** /requestBody/postEnumWith1DoesNotMatchTrueRequestBody |
*JsonApi* | [**post_nested_anyof_to_check_validation_semantics_request_body**](docs/JsonApi.md#post_nested_anyof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody | *ContentTypeJsonApi* | [**post_enum_with1_does_not_match_true_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_enum_with1_does_not_match_true_response_body_for_content_types) | **POST** /responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes |
*JsonApi* | [**post_nested_items_request_body**](docs/JsonApi.md#post_nested_items_request_body) | **POST** /requestBody/postNestedItemsRequestBody | *ContentTypeJsonApi* | [**post_enum_with_escaped_characters_request_body**](docs/ContentTypeJsonApi.md#post_enum_with_escaped_characters_request_body) | **POST** /requestBody/postEnumWithEscapedCharactersRequestBody |
*JsonApi* | [**post_nested_oneof_to_check_validation_semantics_request_body**](docs/JsonApi.md#post_nested_oneof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedOneofToCheckValidationSemanticsRequestBody | *ContentTypeJsonApi* | [**post_enum_with_escaped_characters_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_enum_with_escaped_characters_response_body_for_content_types) | **POST** /responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes |
*JsonApi* | [**post_not_more_complex_schema_request_body**](docs/JsonApi.md#post_not_more_complex_schema_request_body) | **POST** /requestBody/postNotMoreComplexSchemaRequestBody | *ContentTypeJsonApi* | [**post_enum_with_false_does_not_match0_request_body**](docs/ContentTypeJsonApi.md#post_enum_with_false_does_not_match0_request_body) | **POST** /requestBody/postEnumWithFalseDoesNotMatch0RequestBody |
*JsonApi* | [**post_not_request_body**](docs/JsonApi.md#post_not_request_body) | **POST** /requestBody/postNotRequestBody | *ContentTypeJsonApi* | [**post_enum_with_false_does_not_match0_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_enum_with_false_does_not_match0_response_body_for_content_types) | **POST** /responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes |
*JsonApi* | [**post_nul_characters_in_strings_request_body**](docs/JsonApi.md#post_nul_characters_in_strings_request_body) | **POST** /requestBody/postNulCharactersInStringsRequestBody | *ContentTypeJsonApi* | [**post_enum_with_true_does_not_match1_request_body**](docs/ContentTypeJsonApi.md#post_enum_with_true_does_not_match1_request_body) | **POST** /requestBody/postEnumWithTrueDoesNotMatch1RequestBody |
*JsonApi* | [**post_null_type_matches_only_the_null_object_request_body**](docs/JsonApi.md#post_null_type_matches_only_the_null_object_request_body) | **POST** /requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody | *ContentTypeJsonApi* | [**post_enum_with_true_does_not_match1_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_enum_with_true_does_not_match1_response_body_for_content_types) | **POST** /responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes |
*JsonApi* | [**post_number_type_matches_numbers_request_body**](docs/JsonApi.md#post_number_type_matches_numbers_request_body) | **POST** /requestBody/postNumberTypeMatchesNumbersRequestBody | *ContentTypeJsonApi* | [**post_enums_in_properties_request_body**](docs/ContentTypeJsonApi.md#post_enums_in_properties_request_body) | **POST** /requestBody/postEnumsInPropertiesRequestBody |
*JsonApi* | [**post_object_properties_validation_request_body**](docs/JsonApi.md#post_object_properties_validation_request_body) | **POST** /requestBody/postObjectPropertiesValidationRequestBody | *ContentTypeJsonApi* | [**post_enums_in_properties_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_enums_in_properties_response_body_for_content_types) | **POST** /responseBody/postEnumsInPropertiesResponseBodyForContentTypes |
*JsonApi* | [**post_object_type_matches_objects_request_body**](docs/JsonApi.md#post_object_type_matches_objects_request_body) | **POST** /requestBody/postObjectTypeMatchesObjectsRequestBody | *ContentTypeJsonApi* | [**post_forbidden_property_request_body**](docs/ContentTypeJsonApi.md#post_forbidden_property_request_body) | **POST** /requestBody/postForbiddenPropertyRequestBody |
*JsonApi* | [**post_oneof_complex_types_request_body**](docs/JsonApi.md#post_oneof_complex_types_request_body) | **POST** /requestBody/postOneofComplexTypesRequestBody | *ContentTypeJsonApi* | [**post_forbidden_property_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_forbidden_property_response_body_for_content_types) | **POST** /responseBody/postForbiddenPropertyResponseBodyForContentTypes |
*JsonApi* | [**post_oneof_request_body**](docs/JsonApi.md#post_oneof_request_body) | **POST** /requestBody/postOneofRequestBody | *ContentTypeJsonApi* | [**post_hostname_format_request_body**](docs/ContentTypeJsonApi.md#post_hostname_format_request_body) | **POST** /requestBody/postHostnameFormatRequestBody |
*JsonApi* | [**post_oneof_with_base_schema_request_body**](docs/JsonApi.md#post_oneof_with_base_schema_request_body) | **POST** /requestBody/postOneofWithBaseSchemaRequestBody | *ContentTypeJsonApi* | [**post_hostname_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_hostname_format_response_body_for_content_types) | **POST** /responseBody/postHostnameFormatResponseBodyForContentTypes |
*JsonApi* | [**post_oneof_with_empty_schema_request_body**](docs/JsonApi.md#post_oneof_with_empty_schema_request_body) | **POST** /requestBody/postOneofWithEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_integer_type_matches_integers_request_body**](docs/ContentTypeJsonApi.md#post_integer_type_matches_integers_request_body) | **POST** /requestBody/postIntegerTypeMatchesIntegersRequestBody |
*JsonApi* | [**post_pattern_is_not_anchored_request_body**](docs/JsonApi.md#post_pattern_is_not_anchored_request_body) | **POST** /requestBody/postPatternIsNotAnchoredRequestBody | *ContentTypeJsonApi* | [**post_integer_type_matches_integers_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_integer_type_matches_integers_response_body_for_content_types) | **POST** /responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes |
*JsonApi* | [**post_pattern_validation_request_body**](docs/JsonApi.md#post_pattern_validation_request_body) | **POST** /requestBody/postPatternValidationRequestBody | *ContentTypeJsonApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](docs/ContentTypeJsonApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body) | **POST** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody |
*JsonApi* | [**post_properties_with_escaped_characters_request_body**](docs/JsonApi.md#post_properties_with_escaped_characters_request_body) | **POST** /requestBody/postPropertiesWithEscapedCharactersRequestBody | *ContentTypeJsonApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types) | **POST** /responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes |
*JsonApi* | [**post_property_named_ref_that_is_not_a_reference_request_body**](docs/JsonApi.md#post_property_named_ref_that_is_not_a_reference_request_body) | **POST** /requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody | *ContentTypeJsonApi* | [**post_invalid_string_value_for_default_request_body**](docs/ContentTypeJsonApi.md#post_invalid_string_value_for_default_request_body) | **POST** /requestBody/postInvalidStringValueForDefaultRequestBody |
*JsonApi* | [**post_ref_in_additionalproperties_request_body**](docs/JsonApi.md#post_ref_in_additionalproperties_request_body) | **POST** /requestBody/postRefInAdditionalpropertiesRequestBody | *ContentTypeJsonApi* | [**post_invalid_string_value_for_default_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_invalid_string_value_for_default_response_body_for_content_types) | **POST** /responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes |
*JsonApi* | [**post_ref_in_allof_request_body**](docs/JsonApi.md#post_ref_in_allof_request_body) | **POST** /requestBody/postRefInAllofRequestBody | *ContentTypeJsonApi* | [**post_ipv4_format_request_body**](docs/ContentTypeJsonApi.md#post_ipv4_format_request_body) | **POST** /requestBody/postIpv4FormatRequestBody |
*JsonApi* | [**post_ref_in_anyof_request_body**](docs/JsonApi.md#post_ref_in_anyof_request_body) | **POST** /requestBody/postRefInAnyofRequestBody | *ContentTypeJsonApi* | [**post_ipv4_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ipv4_format_response_body_for_content_types) | **POST** /responseBody/postIpv4FormatResponseBodyForContentTypes |
*JsonApi* | [**post_ref_in_items_request_body**](docs/JsonApi.md#post_ref_in_items_request_body) | **POST** /requestBody/postRefInItemsRequestBody | *ContentTypeJsonApi* | [**post_ipv6_format_request_body**](docs/ContentTypeJsonApi.md#post_ipv6_format_request_body) | **POST** /requestBody/postIpv6FormatRequestBody |
*JsonApi* | [**post_ref_in_oneof_request_body**](docs/JsonApi.md#post_ref_in_oneof_request_body) | **POST** /requestBody/postRefInOneofRequestBody | *ContentTypeJsonApi* | [**post_ipv6_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ipv6_format_response_body_for_content_types) | **POST** /responseBody/postIpv6FormatResponseBodyForContentTypes |
*JsonApi* | [**post_ref_in_property_request_body**](docs/JsonApi.md#post_ref_in_property_request_body) | **POST** /requestBody/postRefInPropertyRequestBody | *ContentTypeJsonApi* | [**post_json_pointer_format_request_body**](docs/ContentTypeJsonApi.md#post_json_pointer_format_request_body) | **POST** /requestBody/postJsonPointerFormatRequestBody |
*JsonApi* | [**post_required_default_validation_request_body**](docs/JsonApi.md#post_required_default_validation_request_body) | **POST** /requestBody/postRequiredDefaultValidationRequestBody | *ContentTypeJsonApi* | [**post_json_pointer_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_json_pointer_format_response_body_for_content_types) | **POST** /responseBody/postJsonPointerFormatResponseBodyForContentTypes |
*JsonApi* | [**post_required_validation_request_body**](docs/JsonApi.md#post_required_validation_request_body) | **POST** /requestBody/postRequiredValidationRequestBody | *ContentTypeJsonApi* | [**post_maximum_validation_request_body**](docs/ContentTypeJsonApi.md#post_maximum_validation_request_body) | **POST** /requestBody/postMaximumValidationRequestBody |
*JsonApi* | [**post_required_with_empty_array_request_body**](docs/JsonApi.md#post_required_with_empty_array_request_body) | **POST** /requestBody/postRequiredWithEmptyArrayRequestBody | *ContentTypeJsonApi* | [**post_maximum_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_maximum_validation_response_body_for_content_types) | **POST** /responseBody/postMaximumValidationResponseBodyForContentTypes |
*JsonApi* | [**post_simple_enum_validation_request_body**](docs/JsonApi.md#post_simple_enum_validation_request_body) | **POST** /requestBody/postSimpleEnumValidationRequestBody | *ContentTypeJsonApi* | [**post_maximum_validation_with_unsigned_integer_request_body**](docs/ContentTypeJsonApi.md#post_maximum_validation_with_unsigned_integer_request_body) | **POST** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody |
*JsonApi* | [**post_string_type_matches_strings_request_body**](docs/JsonApi.md#post_string_type_matches_strings_request_body) | **POST** /requestBody/postStringTypeMatchesStringsRequestBody | *ContentTypeJsonApi* | [**post_maximum_validation_with_unsigned_integer_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_maximum_validation_with_unsigned_integer_response_body_for_content_types) | **POST** /responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes |
*JsonApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](docs/JsonApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body) | **POST** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody | *ContentTypeJsonApi* | [**post_maxitems_validation_request_body**](docs/ContentTypeJsonApi.md#post_maxitems_validation_request_body) | **POST** /requestBody/postMaxitemsValidationRequestBody |
*JsonApi* | [**post_uniqueitems_false_validation_request_body**](docs/JsonApi.md#post_uniqueitems_false_validation_request_body) | **POST** /requestBody/postUniqueitemsFalseValidationRequestBody | *ContentTypeJsonApi* | [**post_maxitems_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_maxitems_validation_response_body_for_content_types) | **POST** /responseBody/postMaxitemsValidationResponseBodyForContentTypes |
*JsonApi* | [**post_uniqueitems_validation_request_body**](docs/JsonApi.md#post_uniqueitems_validation_request_body) | **POST** /requestBody/postUniqueitemsValidationRequestBody | *ContentTypeJsonApi* | [**post_maxlength_validation_request_body**](docs/ContentTypeJsonApi.md#post_maxlength_validation_request_body) | **POST** /requestBody/postMaxlengthValidationRequestBody |
*JsonApi* | [**post_uri_format_request_body**](docs/JsonApi.md#post_uri_format_request_body) | **POST** /requestBody/postUriFormatRequestBody | *ContentTypeJsonApi* | [**post_maxlength_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_maxlength_validation_response_body_for_content_types) | **POST** /responseBody/postMaxlengthValidationResponseBodyForContentTypes |
*JsonApi* | [**post_uri_reference_format_request_body**](docs/JsonApi.md#post_uri_reference_format_request_body) | **POST** /requestBody/postUriReferenceFormatRequestBody | *ContentTypeJsonApi* | [**post_maxproperties0_means_the_object_is_empty_request_body**](docs/ContentTypeJsonApi.md#post_maxproperties0_means_the_object_is_empty_request_body) | **POST** /requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody |
*JsonApi* | [**post_uri_template_format_request_body**](docs/JsonApi.md#post_uri_template_format_request_body) | **POST** /requestBody/postUriTemplateFormatRequestBody | *ContentTypeJsonApi* | [**post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_maxproperties0_means_the_object_is_empty_response_body_for_content_types) | **POST** /responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes |
*PostApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_request_body**](docs/PostApi.md#post_additionalproperties_allows_a_schema_which_should_validate_request_body) | **POST** /requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody | *ContentTypeJsonApi* | [**post_maxproperties_validation_request_body**](docs/ContentTypeJsonApi.md#post_maxproperties_validation_request_body) | **POST** /requestBody/postMaxpropertiesValidationRequestBody |
*PostApi* | [**post_additionalproperties_are_allowed_by_default_request_body**](docs/PostApi.md#post_additionalproperties_are_allowed_by_default_request_body) | **POST** /requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody | *ContentTypeJsonApi* | [**post_maxproperties_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_maxproperties_validation_response_body_for_content_types) | **POST** /responseBody/postMaxpropertiesValidationResponseBodyForContentTypes |
*PostApi* | [**post_additionalproperties_can_exist_by_itself_request_body**](docs/PostApi.md#post_additionalproperties_can_exist_by_itself_request_body) | **POST** /requestBody/postAdditionalpropertiesCanExistByItselfRequestBody | *ContentTypeJsonApi* | [**post_minimum_validation_request_body**](docs/ContentTypeJsonApi.md#post_minimum_validation_request_body) | **POST** /requestBody/postMinimumValidationRequestBody |
*PostApi* | [**post_additionalproperties_should_not_look_in_applicators_request_body**](docs/PostApi.md#post_additionalproperties_should_not_look_in_applicators_request_body) | **POST** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody | *ContentTypeJsonApi* | [**post_minimum_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_minimum_validation_response_body_for_content_types) | **POST** /responseBody/postMinimumValidationResponseBodyForContentTypes |
*PostApi* | [**post_allof_combined_with_anyof_oneof_request_body**](docs/PostApi.md#post_allof_combined_with_anyof_oneof_request_body) | **POST** /requestBody/postAllofCombinedWithAnyofOneofRequestBody | *ContentTypeJsonApi* | [**post_minimum_validation_with_signed_integer_request_body**](docs/ContentTypeJsonApi.md#post_minimum_validation_with_signed_integer_request_body) | **POST** /requestBody/postMinimumValidationWithSignedIntegerRequestBody |
*PostApi* | [**post_allof_request_body**](docs/PostApi.md#post_allof_request_body) | **POST** /requestBody/postAllofRequestBody | *ContentTypeJsonApi* | [**post_minimum_validation_with_signed_integer_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_minimum_validation_with_signed_integer_response_body_for_content_types) | **POST** /responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes |
*PostApi* | [**post_allof_simple_types_request_body**](docs/PostApi.md#post_allof_simple_types_request_body) | **POST** /requestBody/postAllofSimpleTypesRequestBody | *ContentTypeJsonApi* | [**post_minitems_validation_request_body**](docs/ContentTypeJsonApi.md#post_minitems_validation_request_body) | **POST** /requestBody/postMinitemsValidationRequestBody |
*PostApi* | [**post_allof_with_base_schema_request_body**](docs/PostApi.md#post_allof_with_base_schema_request_body) | **POST** /requestBody/postAllofWithBaseSchemaRequestBody | *ContentTypeJsonApi* | [**post_minitems_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_minitems_validation_response_body_for_content_types) | **POST** /responseBody/postMinitemsValidationResponseBodyForContentTypes |
*PostApi* | [**post_allof_with_one_empty_schema_request_body**](docs/PostApi.md#post_allof_with_one_empty_schema_request_body) | **POST** /requestBody/postAllofWithOneEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_minlength_validation_request_body**](docs/ContentTypeJsonApi.md#post_minlength_validation_request_body) | **POST** /requestBody/postMinlengthValidationRequestBody |
*PostApi* | [**post_allof_with_the_first_empty_schema_request_body**](docs/PostApi.md#post_allof_with_the_first_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheFirstEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_minlength_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_minlength_validation_response_body_for_content_types) | **POST** /responseBody/postMinlengthValidationResponseBodyForContentTypes |
*PostApi* | [**post_allof_with_the_last_empty_schema_request_body**](docs/PostApi.md#post_allof_with_the_last_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheLastEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_minproperties_validation_request_body**](docs/ContentTypeJsonApi.md#post_minproperties_validation_request_body) | **POST** /requestBody/postMinpropertiesValidationRequestBody |
*PostApi* | [**post_allof_with_two_empty_schemas_request_body**](docs/PostApi.md#post_allof_with_two_empty_schemas_request_body) | **POST** /requestBody/postAllofWithTwoEmptySchemasRequestBody | *ContentTypeJsonApi* | [**post_minproperties_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_minproperties_validation_response_body_for_content_types) | **POST** /responseBody/postMinpropertiesValidationResponseBodyForContentTypes |
*PostApi* | [**post_anyof_complex_types_request_body**](docs/PostApi.md#post_anyof_complex_types_request_body) | **POST** /requestBody/postAnyofComplexTypesRequestBody | *ContentTypeJsonApi* | [**post_nested_allof_to_check_validation_semantics_request_body**](docs/ContentTypeJsonApi.md#post_nested_allof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody |
*PostApi* | [**post_anyof_request_body**](docs/PostApi.md#post_anyof_request_body) | **POST** /requestBody/postAnyofRequestBody | *ContentTypeJsonApi* | [**post_nested_allof_to_check_validation_semantics_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_nested_allof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes |
*PostApi* | [**post_anyof_with_base_schema_request_body**](docs/PostApi.md#post_anyof_with_base_schema_request_body) | **POST** /requestBody/postAnyofWithBaseSchemaRequestBody | *ContentTypeJsonApi* | [**post_nested_anyof_to_check_validation_semantics_request_body**](docs/ContentTypeJsonApi.md#post_nested_anyof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody |
*PostApi* | [**post_anyof_with_one_empty_schema_request_body**](docs/PostApi.md#post_anyof_with_one_empty_schema_request_body) | **POST** /requestBody/postAnyofWithOneEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_nested_anyof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes |
*PostApi* | [**post_array_type_matches_arrays_request_body**](docs/PostApi.md#post_array_type_matches_arrays_request_body) | **POST** /requestBody/postArrayTypeMatchesArraysRequestBody | *ContentTypeJsonApi* | [**post_nested_items_request_body**](docs/ContentTypeJsonApi.md#post_nested_items_request_body) | **POST** /requestBody/postNestedItemsRequestBody |
*PostApi* | [**post_boolean_type_matches_booleans_request_body**](docs/PostApi.md#post_boolean_type_matches_booleans_request_body) | **POST** /requestBody/postBooleanTypeMatchesBooleansRequestBody | *ContentTypeJsonApi* | [**post_nested_items_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_nested_items_response_body_for_content_types) | **POST** /responseBody/postNestedItemsResponseBodyForContentTypes |
*PostApi* | [**post_by_int_request_body**](docs/PostApi.md#post_by_int_request_body) | **POST** /requestBody/postByIntRequestBody | *ContentTypeJsonApi* | [**post_nested_oneof_to_check_validation_semantics_request_body**](docs/ContentTypeJsonApi.md#post_nested_oneof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedOneofToCheckValidationSemanticsRequestBody |
*PostApi* | [**post_by_number_request_body**](docs/PostApi.md#post_by_number_request_body) | **POST** /requestBody/postByNumberRequestBody | *ContentTypeJsonApi* | [**post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_nested_oneof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes |
*PostApi* | [**post_by_small_number_request_body**](docs/PostApi.md#post_by_small_number_request_body) | **POST** /requestBody/postBySmallNumberRequestBody | *ContentTypeJsonApi* | [**post_not_more_complex_schema_request_body**](docs/ContentTypeJsonApi.md#post_not_more_complex_schema_request_body) | **POST** /requestBody/postNotMoreComplexSchemaRequestBody |
*PostApi* | [**post_date_time_format_request_body**](docs/PostApi.md#post_date_time_format_request_body) | **POST** /requestBody/postDateTimeFormatRequestBody | *ContentTypeJsonApi* | [**post_not_more_complex_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_not_more_complex_schema_response_body_for_content_types) | **POST** /responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes |
*PostApi* | [**post_email_format_request_body**](docs/PostApi.md#post_email_format_request_body) | **POST** /requestBody/postEmailFormatRequestBody | *ContentTypeJsonApi* | [**post_not_request_body**](docs/ContentTypeJsonApi.md#post_not_request_body) | **POST** /requestBody/postNotRequestBody |
*PostApi* | [**post_enum_with0_does_not_match_false_request_body**](docs/PostApi.md#post_enum_with0_does_not_match_false_request_body) | **POST** /requestBody/postEnumWith0DoesNotMatchFalseRequestBody | *ContentTypeJsonApi* | [**post_not_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_not_response_body_for_content_types) | **POST** /responseBody/postNotResponseBodyForContentTypes |
*PostApi* | [**post_enum_with1_does_not_match_true_request_body**](docs/PostApi.md#post_enum_with1_does_not_match_true_request_body) | **POST** /requestBody/postEnumWith1DoesNotMatchTrueRequestBody | *ContentTypeJsonApi* | [**post_nul_characters_in_strings_request_body**](docs/ContentTypeJsonApi.md#post_nul_characters_in_strings_request_body) | **POST** /requestBody/postNulCharactersInStringsRequestBody |
*PostApi* | [**post_enum_with_escaped_characters_request_body**](docs/PostApi.md#post_enum_with_escaped_characters_request_body) | **POST** /requestBody/postEnumWithEscapedCharactersRequestBody | *ContentTypeJsonApi* | [**post_nul_characters_in_strings_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_nul_characters_in_strings_response_body_for_content_types) | **POST** /responseBody/postNulCharactersInStringsResponseBodyForContentTypes |
*PostApi* | [**post_enum_with_false_does_not_match0_request_body**](docs/PostApi.md#post_enum_with_false_does_not_match0_request_body) | **POST** /requestBody/postEnumWithFalseDoesNotMatch0RequestBody | *ContentTypeJsonApi* | [**post_null_type_matches_only_the_null_object_request_body**](docs/ContentTypeJsonApi.md#post_null_type_matches_only_the_null_object_request_body) | **POST** /requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody |
*PostApi* | [**post_enum_with_true_does_not_match1_request_body**](docs/PostApi.md#post_enum_with_true_does_not_match1_request_body) | **POST** /requestBody/postEnumWithTrueDoesNotMatch1RequestBody | *ContentTypeJsonApi* | [**post_null_type_matches_only_the_null_object_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_null_type_matches_only_the_null_object_response_body_for_content_types) | **POST** /responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes |
*PostApi* | [**post_enums_in_properties_request_body**](docs/PostApi.md#post_enums_in_properties_request_body) | **POST** /requestBody/postEnumsInPropertiesRequestBody | *ContentTypeJsonApi* | [**post_number_type_matches_numbers_request_body**](docs/ContentTypeJsonApi.md#post_number_type_matches_numbers_request_body) | **POST** /requestBody/postNumberTypeMatchesNumbersRequestBody |
*PostApi* | [**post_forbidden_property_request_body**](docs/PostApi.md#post_forbidden_property_request_body) | **POST** /requestBody/postForbiddenPropertyRequestBody | *ContentTypeJsonApi* | [**post_number_type_matches_numbers_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_number_type_matches_numbers_response_body_for_content_types) | **POST** /responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes |
*PostApi* | [**post_hostname_format_request_body**](docs/PostApi.md#post_hostname_format_request_body) | **POST** /requestBody/postHostnameFormatRequestBody | *ContentTypeJsonApi* | [**post_object_properties_validation_request_body**](docs/ContentTypeJsonApi.md#post_object_properties_validation_request_body) | **POST** /requestBody/postObjectPropertiesValidationRequestBody |
*PostApi* | [**post_integer_type_matches_integers_request_body**](docs/PostApi.md#post_integer_type_matches_integers_request_body) | **POST** /requestBody/postIntegerTypeMatchesIntegersRequestBody | *ContentTypeJsonApi* | [**post_object_properties_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_object_properties_validation_response_body_for_content_types) | **POST** /responseBody/postObjectPropertiesValidationResponseBodyForContentTypes |
*PostApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](docs/PostApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body) | **POST** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody | *ContentTypeJsonApi* | [**post_object_type_matches_objects_request_body**](docs/ContentTypeJsonApi.md#post_object_type_matches_objects_request_body) | **POST** /requestBody/postObjectTypeMatchesObjectsRequestBody |
*PostApi* | [**post_invalid_string_value_for_default_request_body**](docs/PostApi.md#post_invalid_string_value_for_default_request_body) | **POST** /requestBody/postInvalidStringValueForDefaultRequestBody | *ContentTypeJsonApi* | [**post_object_type_matches_objects_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_object_type_matches_objects_response_body_for_content_types) | **POST** /responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes |
*PostApi* | [**post_ipv4_format_request_body**](docs/PostApi.md#post_ipv4_format_request_body) | **POST** /requestBody/postIpv4FormatRequestBody | *ContentTypeJsonApi* | [**post_oneof_complex_types_request_body**](docs/ContentTypeJsonApi.md#post_oneof_complex_types_request_body) | **POST** /requestBody/postOneofComplexTypesRequestBody |
*PostApi* | [**post_ipv6_format_request_body**](docs/PostApi.md#post_ipv6_format_request_body) | **POST** /requestBody/postIpv6FormatRequestBody | *ContentTypeJsonApi* | [**post_oneof_complex_types_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_oneof_complex_types_response_body_for_content_types) | **POST** /responseBody/postOneofComplexTypesResponseBodyForContentTypes |
*PostApi* | [**post_json_pointer_format_request_body**](docs/PostApi.md#post_json_pointer_format_request_body) | **POST** /requestBody/postJsonPointerFormatRequestBody | *ContentTypeJsonApi* | [**post_oneof_request_body**](docs/ContentTypeJsonApi.md#post_oneof_request_body) | **POST** /requestBody/postOneofRequestBody |
*PostApi* | [**post_maximum_validation_request_body**](docs/PostApi.md#post_maximum_validation_request_body) | **POST** /requestBody/postMaximumValidationRequestBody | *ContentTypeJsonApi* | [**post_oneof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_oneof_response_body_for_content_types) | **POST** /responseBody/postOneofResponseBodyForContentTypes |
*PostApi* | [**post_maximum_validation_with_unsigned_integer_request_body**](docs/PostApi.md#post_maximum_validation_with_unsigned_integer_request_body) | **POST** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody | *ContentTypeJsonApi* | [**post_oneof_with_base_schema_request_body**](docs/ContentTypeJsonApi.md#post_oneof_with_base_schema_request_body) | **POST** /requestBody/postOneofWithBaseSchemaRequestBody |
*PostApi* | [**post_maxitems_validation_request_body**](docs/PostApi.md#post_maxitems_validation_request_body) | **POST** /requestBody/postMaxitemsValidationRequestBody | *ContentTypeJsonApi* | [**post_oneof_with_base_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_oneof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes |
*PostApi* | [**post_maxlength_validation_request_body**](docs/PostApi.md#post_maxlength_validation_request_body) | **POST** /requestBody/postMaxlengthValidationRequestBody | *ContentTypeJsonApi* | [**post_oneof_with_empty_schema_request_body**](docs/ContentTypeJsonApi.md#post_oneof_with_empty_schema_request_body) | **POST** /requestBody/postOneofWithEmptySchemaRequestBody |
*PostApi* | [**post_maxproperties0_means_the_object_is_empty_request_body**](docs/PostApi.md#post_maxproperties0_means_the_object_is_empty_request_body) | **POST** /requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody | *ContentTypeJsonApi* | [**post_oneof_with_empty_schema_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_oneof_with_empty_schema_response_body_for_content_types) | **POST** /responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes |
*PostApi* | [**post_maxproperties_validation_request_body**](docs/PostApi.md#post_maxproperties_validation_request_body) | **POST** /requestBody/postMaxpropertiesValidationRequestBody | *ContentTypeJsonApi* | [**post_pattern_is_not_anchored_request_body**](docs/ContentTypeJsonApi.md#post_pattern_is_not_anchored_request_body) | **POST** /requestBody/postPatternIsNotAnchoredRequestBody |
*PostApi* | [**post_minimum_validation_request_body**](docs/PostApi.md#post_minimum_validation_request_body) | **POST** /requestBody/postMinimumValidationRequestBody | *ContentTypeJsonApi* | [**post_pattern_is_not_anchored_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_pattern_is_not_anchored_response_body_for_content_types) | **POST** /responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes |
*PostApi* | [**post_minimum_validation_with_signed_integer_request_body**](docs/PostApi.md#post_minimum_validation_with_signed_integer_request_body) | **POST** /requestBody/postMinimumValidationWithSignedIntegerRequestBody | *ContentTypeJsonApi* | [**post_pattern_validation_request_body**](docs/ContentTypeJsonApi.md#post_pattern_validation_request_body) | **POST** /requestBody/postPatternValidationRequestBody |
*PostApi* | [**post_minitems_validation_request_body**](docs/PostApi.md#post_minitems_validation_request_body) | **POST** /requestBody/postMinitemsValidationRequestBody | *ContentTypeJsonApi* | [**post_pattern_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_pattern_validation_response_body_for_content_types) | **POST** /responseBody/postPatternValidationResponseBodyForContentTypes |
*PostApi* | [**post_minlength_validation_request_body**](docs/PostApi.md#post_minlength_validation_request_body) | **POST** /requestBody/postMinlengthValidationRequestBody | *ContentTypeJsonApi* | [**post_properties_with_escaped_characters_request_body**](docs/ContentTypeJsonApi.md#post_properties_with_escaped_characters_request_body) | **POST** /requestBody/postPropertiesWithEscapedCharactersRequestBody |
*PostApi* | [**post_minproperties_validation_request_body**](docs/PostApi.md#post_minproperties_validation_request_body) | **POST** /requestBody/postMinpropertiesValidationRequestBody | *ContentTypeJsonApi* | [**post_properties_with_escaped_characters_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_properties_with_escaped_characters_response_body_for_content_types) | **POST** /responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes |
*PostApi* | [**post_nested_allof_to_check_validation_semantics_request_body**](docs/PostApi.md#post_nested_allof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody | *ContentTypeJsonApi* | [**post_property_named_ref_that_is_not_a_reference_request_body**](docs/ContentTypeJsonApi.md#post_property_named_ref_that_is_not_a_reference_request_body) | **POST** /requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody |
*PostApi* | [**post_nested_anyof_to_check_validation_semantics_request_body**](docs/PostApi.md#post_nested_anyof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody | *ContentTypeJsonApi* | [**post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_property_named_ref_that_is_not_a_reference_response_body_for_content_types) | **POST** /responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes |
*PostApi* | [**post_nested_items_request_body**](docs/PostApi.md#post_nested_items_request_body) | **POST** /requestBody/postNestedItemsRequestBody | *ContentTypeJsonApi* | [**post_ref_in_additionalproperties_request_body**](docs/ContentTypeJsonApi.md#post_ref_in_additionalproperties_request_body) | **POST** /requestBody/postRefInAdditionalpropertiesRequestBody |
*PostApi* | [**post_nested_oneof_to_check_validation_semantics_request_body**](docs/PostApi.md#post_nested_oneof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedOneofToCheckValidationSemanticsRequestBody | *ContentTypeJsonApi* | [**post_ref_in_additionalproperties_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ref_in_additionalproperties_response_body_for_content_types) | **POST** /responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes |
*PostApi* | [**post_not_more_complex_schema_request_body**](docs/PostApi.md#post_not_more_complex_schema_request_body) | **POST** /requestBody/postNotMoreComplexSchemaRequestBody | *ContentTypeJsonApi* | [**post_ref_in_allof_request_body**](docs/ContentTypeJsonApi.md#post_ref_in_allof_request_body) | **POST** /requestBody/postRefInAllofRequestBody |
*PostApi* | [**post_not_request_body**](docs/PostApi.md#post_not_request_body) | **POST** /requestBody/postNotRequestBody | *ContentTypeJsonApi* | [**post_ref_in_allof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ref_in_allof_response_body_for_content_types) | **POST** /responseBody/postRefInAllofResponseBodyForContentTypes |
*PostApi* | [**post_nul_characters_in_strings_request_body**](docs/PostApi.md#post_nul_characters_in_strings_request_body) | **POST** /requestBody/postNulCharactersInStringsRequestBody | *ContentTypeJsonApi* | [**post_ref_in_anyof_request_body**](docs/ContentTypeJsonApi.md#post_ref_in_anyof_request_body) | **POST** /requestBody/postRefInAnyofRequestBody |
*PostApi* | [**post_null_type_matches_only_the_null_object_request_body**](docs/PostApi.md#post_null_type_matches_only_the_null_object_request_body) | **POST** /requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody | *ContentTypeJsonApi* | [**post_ref_in_anyof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ref_in_anyof_response_body_for_content_types) | **POST** /responseBody/postRefInAnyofResponseBodyForContentTypes |
*PostApi* | [**post_number_type_matches_numbers_request_body**](docs/PostApi.md#post_number_type_matches_numbers_request_body) | **POST** /requestBody/postNumberTypeMatchesNumbersRequestBody | *ContentTypeJsonApi* | [**post_ref_in_items_request_body**](docs/ContentTypeJsonApi.md#post_ref_in_items_request_body) | **POST** /requestBody/postRefInItemsRequestBody |
*PostApi* | [**post_object_properties_validation_request_body**](docs/PostApi.md#post_object_properties_validation_request_body) | **POST** /requestBody/postObjectPropertiesValidationRequestBody | *ContentTypeJsonApi* | [**post_ref_in_items_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ref_in_items_response_body_for_content_types) | **POST** /responseBody/postRefInItemsResponseBodyForContentTypes |
*PostApi* | [**post_object_type_matches_objects_request_body**](docs/PostApi.md#post_object_type_matches_objects_request_body) | **POST** /requestBody/postObjectTypeMatchesObjectsRequestBody | *ContentTypeJsonApi* | [**post_ref_in_oneof_request_body**](docs/ContentTypeJsonApi.md#post_ref_in_oneof_request_body) | **POST** /requestBody/postRefInOneofRequestBody |
*PostApi* | [**post_oneof_complex_types_request_body**](docs/PostApi.md#post_oneof_complex_types_request_body) | **POST** /requestBody/postOneofComplexTypesRequestBody | *ContentTypeJsonApi* | [**post_ref_in_oneof_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ref_in_oneof_response_body_for_content_types) | **POST** /responseBody/postRefInOneofResponseBodyForContentTypes |
*PostApi* | [**post_oneof_request_body**](docs/PostApi.md#post_oneof_request_body) | **POST** /requestBody/postOneofRequestBody | *ContentTypeJsonApi* | [**post_ref_in_property_request_body**](docs/ContentTypeJsonApi.md#post_ref_in_property_request_body) | **POST** /requestBody/postRefInPropertyRequestBody |
*PostApi* | [**post_oneof_with_base_schema_request_body**](docs/PostApi.md#post_oneof_with_base_schema_request_body) | **POST** /requestBody/postOneofWithBaseSchemaRequestBody | *ContentTypeJsonApi* | [**post_ref_in_property_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_ref_in_property_response_body_for_content_types) | **POST** /responseBody/postRefInPropertyResponseBodyForContentTypes |
*PostApi* | [**post_oneof_with_empty_schema_request_body**](docs/PostApi.md#post_oneof_with_empty_schema_request_body) | **POST** /requestBody/postOneofWithEmptySchemaRequestBody | *ContentTypeJsonApi* | [**post_required_default_validation_request_body**](docs/ContentTypeJsonApi.md#post_required_default_validation_request_body) | **POST** /requestBody/postRequiredDefaultValidationRequestBody |
*PostApi* | [**post_pattern_is_not_anchored_request_body**](docs/PostApi.md#post_pattern_is_not_anchored_request_body) | **POST** /requestBody/postPatternIsNotAnchoredRequestBody | *ContentTypeJsonApi* | [**post_required_default_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_required_default_validation_response_body_for_content_types) | **POST** /responseBody/postRequiredDefaultValidationResponseBodyForContentTypes |
*PostApi* | [**post_pattern_validation_request_body**](docs/PostApi.md#post_pattern_validation_request_body) | **POST** /requestBody/postPatternValidationRequestBody | *ContentTypeJsonApi* | [**post_required_validation_request_body**](docs/ContentTypeJsonApi.md#post_required_validation_request_body) | **POST** /requestBody/postRequiredValidationRequestBody |
*PostApi* | [**post_properties_with_escaped_characters_request_body**](docs/PostApi.md#post_properties_with_escaped_characters_request_body) | **POST** /requestBody/postPropertiesWithEscapedCharactersRequestBody | *ContentTypeJsonApi* | [**post_required_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_required_validation_response_body_for_content_types) | **POST** /responseBody/postRequiredValidationResponseBodyForContentTypes |
*PostApi* | [**post_property_named_ref_that_is_not_a_reference_request_body**](docs/PostApi.md#post_property_named_ref_that_is_not_a_reference_request_body) | **POST** /requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody | *ContentTypeJsonApi* | [**post_required_with_empty_array_request_body**](docs/ContentTypeJsonApi.md#post_required_with_empty_array_request_body) | **POST** /requestBody/postRequiredWithEmptyArrayRequestBody |
*PostApi* | [**post_ref_in_additionalproperties_request_body**](docs/PostApi.md#post_ref_in_additionalproperties_request_body) | **POST** /requestBody/postRefInAdditionalpropertiesRequestBody | *ContentTypeJsonApi* | [**post_required_with_empty_array_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_required_with_empty_array_response_body_for_content_types) | **POST** /responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes |
*PostApi* | [**post_ref_in_allof_request_body**](docs/PostApi.md#post_ref_in_allof_request_body) | **POST** /requestBody/postRefInAllofRequestBody | *ContentTypeJsonApi* | [**post_simple_enum_validation_request_body**](docs/ContentTypeJsonApi.md#post_simple_enum_validation_request_body) | **POST** /requestBody/postSimpleEnumValidationRequestBody |
*PostApi* | [**post_ref_in_anyof_request_body**](docs/PostApi.md#post_ref_in_anyof_request_body) | **POST** /requestBody/postRefInAnyofRequestBody | *ContentTypeJsonApi* | [**post_simple_enum_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_simple_enum_validation_response_body_for_content_types) | **POST** /responseBody/postSimpleEnumValidationResponseBodyForContentTypes |
*PostApi* | [**post_ref_in_items_request_body**](docs/PostApi.md#post_ref_in_items_request_body) | **POST** /requestBody/postRefInItemsRequestBody | *ContentTypeJsonApi* | [**post_string_type_matches_strings_request_body**](docs/ContentTypeJsonApi.md#post_string_type_matches_strings_request_body) | **POST** /requestBody/postStringTypeMatchesStringsRequestBody |
*PostApi* | [**post_ref_in_oneof_request_body**](docs/PostApi.md#post_ref_in_oneof_request_body) | **POST** /requestBody/postRefInOneofRequestBody | *ContentTypeJsonApi* | [**post_string_type_matches_strings_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_string_type_matches_strings_response_body_for_content_types) | **POST** /responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes |
*PostApi* | [**post_ref_in_property_request_body**](docs/PostApi.md#post_ref_in_property_request_body) | **POST** /requestBody/postRefInPropertyRequestBody | *ContentTypeJsonApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](docs/ContentTypeJsonApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body) | **POST** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody |
*PostApi* | [**post_required_default_validation_request_body**](docs/PostApi.md#post_required_default_validation_request_body) | **POST** /requestBody/postRequiredDefaultValidationRequestBody | *ContentTypeJsonApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types) | **POST** /responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes |
*PostApi* | [**post_required_validation_request_body**](docs/PostApi.md#post_required_validation_request_body) | **POST** /requestBody/postRequiredValidationRequestBody | *ContentTypeJsonApi* | [**post_uniqueitems_false_validation_request_body**](docs/ContentTypeJsonApi.md#post_uniqueitems_false_validation_request_body) | **POST** /requestBody/postUniqueitemsFalseValidationRequestBody |
*PostApi* | [**post_required_with_empty_array_request_body**](docs/PostApi.md#post_required_with_empty_array_request_body) | **POST** /requestBody/postRequiredWithEmptyArrayRequestBody | *ContentTypeJsonApi* | [**post_uniqueitems_false_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_uniqueitems_false_validation_response_body_for_content_types) | **POST** /responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes |
*PostApi* | [**post_simple_enum_validation_request_body**](docs/PostApi.md#post_simple_enum_validation_request_body) | **POST** /requestBody/postSimpleEnumValidationRequestBody | *ContentTypeJsonApi* | [**post_uniqueitems_validation_request_body**](docs/ContentTypeJsonApi.md#post_uniqueitems_validation_request_body) | **POST** /requestBody/postUniqueitemsValidationRequestBody |
*PostApi* | [**post_string_type_matches_strings_request_body**](docs/PostApi.md#post_string_type_matches_strings_request_body) | **POST** /requestBody/postStringTypeMatchesStringsRequestBody | *ContentTypeJsonApi* | [**post_uniqueitems_validation_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_uniqueitems_validation_response_body_for_content_types) | **POST** /responseBody/postUniqueitemsValidationResponseBodyForContentTypes |
*PostApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](docs/PostApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body) | **POST** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody | *ContentTypeJsonApi* | [**post_uri_format_request_body**](docs/ContentTypeJsonApi.md#post_uri_format_request_body) | **POST** /requestBody/postUriFormatRequestBody |
*PostApi* | [**post_uniqueitems_false_validation_request_body**](docs/PostApi.md#post_uniqueitems_false_validation_request_body) | **POST** /requestBody/postUniqueitemsFalseValidationRequestBody | *ContentTypeJsonApi* | [**post_uri_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_uri_format_response_body_for_content_types) | **POST** /responseBody/postUriFormatResponseBodyForContentTypes |
*PostApi* | [**post_uniqueitems_validation_request_body**](docs/PostApi.md#post_uniqueitems_validation_request_body) | **POST** /requestBody/postUniqueitemsValidationRequestBody | *ContentTypeJsonApi* | [**post_uri_reference_format_request_body**](docs/ContentTypeJsonApi.md#post_uri_reference_format_request_body) | **POST** /requestBody/postUriReferenceFormatRequestBody |
*PostApi* | [**post_uri_format_request_body**](docs/PostApi.md#post_uri_format_request_body) | **POST** /requestBody/postUriFormatRequestBody | *ContentTypeJsonApi* | [**post_uri_reference_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_uri_reference_format_response_body_for_content_types) | **POST** /responseBody/postUriReferenceFormatResponseBodyForContentTypes |
*PostApi* | [**post_uri_reference_format_request_body**](docs/PostApi.md#post_uri_reference_format_request_body) | **POST** /requestBody/postUriReferenceFormatRequestBody | *ContentTypeJsonApi* | [**post_uri_template_format_request_body**](docs/ContentTypeJsonApi.md#post_uri_template_format_request_body) | **POST** /requestBody/postUriTemplateFormatRequestBody |
*PostApi* | [**post_uri_template_format_request_body**](docs/PostApi.md#post_uri_template_format_request_body) | **POST** /requestBody/postUriTemplateFormatRequestBody | *ContentTypeJsonApi* | [**post_uri_template_format_response_body_for_content_types**](docs/ContentTypeJsonApi.md#post_uri_template_format_response_body_for_content_types) | **POST** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
*RequestBodyApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_request_body**](docs/RequestBodyApi.md#post_additionalproperties_allows_a_schema_which_should_validate_request_body) | **POST** /requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody | *OperationRequestBodyApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_request_body**](docs/OperationRequestBodyApi.md#post_additionalproperties_allows_a_schema_which_should_validate_request_body) | **POST** /requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody |
*RequestBodyApi* | [**post_additionalproperties_are_allowed_by_default_request_body**](docs/RequestBodyApi.md#post_additionalproperties_are_allowed_by_default_request_body) | **POST** /requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody | *OperationRequestBodyApi* | [**post_additionalproperties_are_allowed_by_default_request_body**](docs/OperationRequestBodyApi.md#post_additionalproperties_are_allowed_by_default_request_body) | **POST** /requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody |
*RequestBodyApi* | [**post_additionalproperties_can_exist_by_itself_request_body**](docs/RequestBodyApi.md#post_additionalproperties_can_exist_by_itself_request_body) | **POST** /requestBody/postAdditionalpropertiesCanExistByItselfRequestBody | *OperationRequestBodyApi* | [**post_additionalproperties_can_exist_by_itself_request_body**](docs/OperationRequestBodyApi.md#post_additionalproperties_can_exist_by_itself_request_body) | **POST** /requestBody/postAdditionalpropertiesCanExistByItselfRequestBody |
*RequestBodyApi* | [**post_additionalproperties_should_not_look_in_applicators_request_body**](docs/RequestBodyApi.md#post_additionalproperties_should_not_look_in_applicators_request_body) | **POST** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody | *OperationRequestBodyApi* | [**post_additionalproperties_should_not_look_in_applicators_request_body**](docs/OperationRequestBodyApi.md#post_additionalproperties_should_not_look_in_applicators_request_body) | **POST** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody |
*RequestBodyApi* | [**post_allof_combined_with_anyof_oneof_request_body**](docs/RequestBodyApi.md#post_allof_combined_with_anyof_oneof_request_body) | **POST** /requestBody/postAllofCombinedWithAnyofOneofRequestBody | *OperationRequestBodyApi* | [**post_allof_combined_with_anyof_oneof_request_body**](docs/OperationRequestBodyApi.md#post_allof_combined_with_anyof_oneof_request_body) | **POST** /requestBody/postAllofCombinedWithAnyofOneofRequestBody |
*RequestBodyApi* | [**post_allof_request_body**](docs/RequestBodyApi.md#post_allof_request_body) | **POST** /requestBody/postAllofRequestBody | *OperationRequestBodyApi* | [**post_allof_request_body**](docs/OperationRequestBodyApi.md#post_allof_request_body) | **POST** /requestBody/postAllofRequestBody |
*RequestBodyApi* | [**post_allof_simple_types_request_body**](docs/RequestBodyApi.md#post_allof_simple_types_request_body) | **POST** /requestBody/postAllofSimpleTypesRequestBody | *OperationRequestBodyApi* | [**post_allof_simple_types_request_body**](docs/OperationRequestBodyApi.md#post_allof_simple_types_request_body) | **POST** /requestBody/postAllofSimpleTypesRequestBody |
*RequestBodyApi* | [**post_allof_with_base_schema_request_body**](docs/RequestBodyApi.md#post_allof_with_base_schema_request_body) | **POST** /requestBody/postAllofWithBaseSchemaRequestBody | *OperationRequestBodyApi* | [**post_allof_with_base_schema_request_body**](docs/OperationRequestBodyApi.md#post_allof_with_base_schema_request_body) | **POST** /requestBody/postAllofWithBaseSchemaRequestBody |
*RequestBodyApi* | [**post_allof_with_one_empty_schema_request_body**](docs/RequestBodyApi.md#post_allof_with_one_empty_schema_request_body) | **POST** /requestBody/postAllofWithOneEmptySchemaRequestBody | *OperationRequestBodyApi* | [**post_allof_with_one_empty_schema_request_body**](docs/OperationRequestBodyApi.md#post_allof_with_one_empty_schema_request_body) | **POST** /requestBody/postAllofWithOneEmptySchemaRequestBody |
*RequestBodyApi* | [**post_allof_with_the_first_empty_schema_request_body**](docs/RequestBodyApi.md#post_allof_with_the_first_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheFirstEmptySchemaRequestBody | *OperationRequestBodyApi* | [**post_allof_with_the_first_empty_schema_request_body**](docs/OperationRequestBodyApi.md#post_allof_with_the_first_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheFirstEmptySchemaRequestBody |
*RequestBodyApi* | [**post_allof_with_the_last_empty_schema_request_body**](docs/RequestBodyApi.md#post_allof_with_the_last_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheLastEmptySchemaRequestBody | *OperationRequestBodyApi* | [**post_allof_with_the_last_empty_schema_request_body**](docs/OperationRequestBodyApi.md#post_allof_with_the_last_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheLastEmptySchemaRequestBody |
*RequestBodyApi* | [**post_allof_with_two_empty_schemas_request_body**](docs/RequestBodyApi.md#post_allof_with_two_empty_schemas_request_body) | **POST** /requestBody/postAllofWithTwoEmptySchemasRequestBody | *OperationRequestBodyApi* | [**post_allof_with_two_empty_schemas_request_body**](docs/OperationRequestBodyApi.md#post_allof_with_two_empty_schemas_request_body) | **POST** /requestBody/postAllofWithTwoEmptySchemasRequestBody |
*RequestBodyApi* | [**post_anyof_complex_types_request_body**](docs/RequestBodyApi.md#post_anyof_complex_types_request_body) | **POST** /requestBody/postAnyofComplexTypesRequestBody | *OperationRequestBodyApi* | [**post_anyof_complex_types_request_body**](docs/OperationRequestBodyApi.md#post_anyof_complex_types_request_body) | **POST** /requestBody/postAnyofComplexTypesRequestBody |
*RequestBodyApi* | [**post_anyof_request_body**](docs/RequestBodyApi.md#post_anyof_request_body) | **POST** /requestBody/postAnyofRequestBody | *OperationRequestBodyApi* | [**post_anyof_request_body**](docs/OperationRequestBodyApi.md#post_anyof_request_body) | **POST** /requestBody/postAnyofRequestBody |
*RequestBodyApi* | [**post_anyof_with_base_schema_request_body**](docs/RequestBodyApi.md#post_anyof_with_base_schema_request_body) | **POST** /requestBody/postAnyofWithBaseSchemaRequestBody | *OperationRequestBodyApi* | [**post_anyof_with_base_schema_request_body**](docs/OperationRequestBodyApi.md#post_anyof_with_base_schema_request_body) | **POST** /requestBody/postAnyofWithBaseSchemaRequestBody |
*RequestBodyApi* | [**post_anyof_with_one_empty_schema_request_body**](docs/RequestBodyApi.md#post_anyof_with_one_empty_schema_request_body) | **POST** /requestBody/postAnyofWithOneEmptySchemaRequestBody | *OperationRequestBodyApi* | [**post_anyof_with_one_empty_schema_request_body**](docs/OperationRequestBodyApi.md#post_anyof_with_one_empty_schema_request_body) | **POST** /requestBody/postAnyofWithOneEmptySchemaRequestBody |
*RequestBodyApi* | [**post_array_type_matches_arrays_request_body**](docs/RequestBodyApi.md#post_array_type_matches_arrays_request_body) | **POST** /requestBody/postArrayTypeMatchesArraysRequestBody | *OperationRequestBodyApi* | [**post_array_type_matches_arrays_request_body**](docs/OperationRequestBodyApi.md#post_array_type_matches_arrays_request_body) | **POST** /requestBody/postArrayTypeMatchesArraysRequestBody |
*RequestBodyApi* | [**post_boolean_type_matches_booleans_request_body**](docs/RequestBodyApi.md#post_boolean_type_matches_booleans_request_body) | **POST** /requestBody/postBooleanTypeMatchesBooleansRequestBody | *OperationRequestBodyApi* | [**post_boolean_type_matches_booleans_request_body**](docs/OperationRequestBodyApi.md#post_boolean_type_matches_booleans_request_body) | **POST** /requestBody/postBooleanTypeMatchesBooleansRequestBody |
*RequestBodyApi* | [**post_by_int_request_body**](docs/RequestBodyApi.md#post_by_int_request_body) | **POST** /requestBody/postByIntRequestBody | *OperationRequestBodyApi* | [**post_by_int_request_body**](docs/OperationRequestBodyApi.md#post_by_int_request_body) | **POST** /requestBody/postByIntRequestBody |
*RequestBodyApi* | [**post_by_number_request_body**](docs/RequestBodyApi.md#post_by_number_request_body) | **POST** /requestBody/postByNumberRequestBody | *OperationRequestBodyApi* | [**post_by_number_request_body**](docs/OperationRequestBodyApi.md#post_by_number_request_body) | **POST** /requestBody/postByNumberRequestBody |
*RequestBodyApi* | [**post_by_small_number_request_body**](docs/RequestBodyApi.md#post_by_small_number_request_body) | **POST** /requestBody/postBySmallNumberRequestBody | *OperationRequestBodyApi* | [**post_by_small_number_request_body**](docs/OperationRequestBodyApi.md#post_by_small_number_request_body) | **POST** /requestBody/postBySmallNumberRequestBody |
*RequestBodyApi* | [**post_date_time_format_request_body**](docs/RequestBodyApi.md#post_date_time_format_request_body) | **POST** /requestBody/postDateTimeFormatRequestBody | *OperationRequestBodyApi* | [**post_date_time_format_request_body**](docs/OperationRequestBodyApi.md#post_date_time_format_request_body) | **POST** /requestBody/postDateTimeFormatRequestBody |
*RequestBodyApi* | [**post_email_format_request_body**](docs/RequestBodyApi.md#post_email_format_request_body) | **POST** /requestBody/postEmailFormatRequestBody | *OperationRequestBodyApi* | [**post_email_format_request_body**](docs/OperationRequestBodyApi.md#post_email_format_request_body) | **POST** /requestBody/postEmailFormatRequestBody |
*RequestBodyApi* | [**post_enum_with0_does_not_match_false_request_body**](docs/RequestBodyApi.md#post_enum_with0_does_not_match_false_request_body) | **POST** /requestBody/postEnumWith0DoesNotMatchFalseRequestBody | *OperationRequestBodyApi* | [**post_enum_with0_does_not_match_false_request_body**](docs/OperationRequestBodyApi.md#post_enum_with0_does_not_match_false_request_body) | **POST** /requestBody/postEnumWith0DoesNotMatchFalseRequestBody |
*RequestBodyApi* | [**post_enum_with1_does_not_match_true_request_body**](docs/RequestBodyApi.md#post_enum_with1_does_not_match_true_request_body) | **POST** /requestBody/postEnumWith1DoesNotMatchTrueRequestBody | *OperationRequestBodyApi* | [**post_enum_with1_does_not_match_true_request_body**](docs/OperationRequestBodyApi.md#post_enum_with1_does_not_match_true_request_body) | **POST** /requestBody/postEnumWith1DoesNotMatchTrueRequestBody |
*RequestBodyApi* | [**post_enum_with_escaped_characters_request_body**](docs/RequestBodyApi.md#post_enum_with_escaped_characters_request_body) | **POST** /requestBody/postEnumWithEscapedCharactersRequestBody | *OperationRequestBodyApi* | [**post_enum_with_escaped_characters_request_body**](docs/OperationRequestBodyApi.md#post_enum_with_escaped_characters_request_body) | **POST** /requestBody/postEnumWithEscapedCharactersRequestBody |
*RequestBodyApi* | [**post_enum_with_false_does_not_match0_request_body**](docs/RequestBodyApi.md#post_enum_with_false_does_not_match0_request_body) | **POST** /requestBody/postEnumWithFalseDoesNotMatch0RequestBody | *OperationRequestBodyApi* | [**post_enum_with_false_does_not_match0_request_body**](docs/OperationRequestBodyApi.md#post_enum_with_false_does_not_match0_request_body) | **POST** /requestBody/postEnumWithFalseDoesNotMatch0RequestBody |
*RequestBodyApi* | [**post_enum_with_true_does_not_match1_request_body**](docs/RequestBodyApi.md#post_enum_with_true_does_not_match1_request_body) | **POST** /requestBody/postEnumWithTrueDoesNotMatch1RequestBody | *OperationRequestBodyApi* | [**post_enum_with_true_does_not_match1_request_body**](docs/OperationRequestBodyApi.md#post_enum_with_true_does_not_match1_request_body) | **POST** /requestBody/postEnumWithTrueDoesNotMatch1RequestBody |
*RequestBodyApi* | [**post_enums_in_properties_request_body**](docs/RequestBodyApi.md#post_enums_in_properties_request_body) | **POST** /requestBody/postEnumsInPropertiesRequestBody | *OperationRequestBodyApi* | [**post_enums_in_properties_request_body**](docs/OperationRequestBodyApi.md#post_enums_in_properties_request_body) | **POST** /requestBody/postEnumsInPropertiesRequestBody |
*RequestBodyApi* | [**post_forbidden_property_request_body**](docs/RequestBodyApi.md#post_forbidden_property_request_body) | **POST** /requestBody/postForbiddenPropertyRequestBody | *OperationRequestBodyApi* | [**post_forbidden_property_request_body**](docs/OperationRequestBodyApi.md#post_forbidden_property_request_body) | **POST** /requestBody/postForbiddenPropertyRequestBody |
*RequestBodyApi* | [**post_hostname_format_request_body**](docs/RequestBodyApi.md#post_hostname_format_request_body) | **POST** /requestBody/postHostnameFormatRequestBody | *OperationRequestBodyApi* | [**post_hostname_format_request_body**](docs/OperationRequestBodyApi.md#post_hostname_format_request_body) | **POST** /requestBody/postHostnameFormatRequestBody |
*RequestBodyApi* | [**post_integer_type_matches_integers_request_body**](docs/RequestBodyApi.md#post_integer_type_matches_integers_request_body) | **POST** /requestBody/postIntegerTypeMatchesIntegersRequestBody | *OperationRequestBodyApi* | [**post_integer_type_matches_integers_request_body**](docs/OperationRequestBodyApi.md#post_integer_type_matches_integers_request_body) | **POST** /requestBody/postIntegerTypeMatchesIntegersRequestBody |
*RequestBodyApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](docs/RequestBodyApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body) | **POST** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody | *OperationRequestBodyApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](docs/OperationRequestBodyApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body) | **POST** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody |
*RequestBodyApi* | [**post_invalid_string_value_for_default_request_body**](docs/RequestBodyApi.md#post_invalid_string_value_for_default_request_body) | **POST** /requestBody/postInvalidStringValueForDefaultRequestBody | *OperationRequestBodyApi* | [**post_invalid_string_value_for_default_request_body**](docs/OperationRequestBodyApi.md#post_invalid_string_value_for_default_request_body) | **POST** /requestBody/postInvalidStringValueForDefaultRequestBody |
*RequestBodyApi* | [**post_ipv4_format_request_body**](docs/RequestBodyApi.md#post_ipv4_format_request_body) | **POST** /requestBody/postIpv4FormatRequestBody | *OperationRequestBodyApi* | [**post_ipv4_format_request_body**](docs/OperationRequestBodyApi.md#post_ipv4_format_request_body) | **POST** /requestBody/postIpv4FormatRequestBody |
*RequestBodyApi* | [**post_ipv6_format_request_body**](docs/RequestBodyApi.md#post_ipv6_format_request_body) | **POST** /requestBody/postIpv6FormatRequestBody | *OperationRequestBodyApi* | [**post_ipv6_format_request_body**](docs/OperationRequestBodyApi.md#post_ipv6_format_request_body) | **POST** /requestBody/postIpv6FormatRequestBody |
*RequestBodyApi* | [**post_json_pointer_format_request_body**](docs/RequestBodyApi.md#post_json_pointer_format_request_body) | **POST** /requestBody/postJsonPointerFormatRequestBody | *OperationRequestBodyApi* | [**post_json_pointer_format_request_body**](docs/OperationRequestBodyApi.md#post_json_pointer_format_request_body) | **POST** /requestBody/postJsonPointerFormatRequestBody |
*RequestBodyApi* | [**post_maximum_validation_request_body**](docs/RequestBodyApi.md#post_maximum_validation_request_body) | **POST** /requestBody/postMaximumValidationRequestBody | *OperationRequestBodyApi* | [**post_maximum_validation_request_body**](docs/OperationRequestBodyApi.md#post_maximum_validation_request_body) | **POST** /requestBody/postMaximumValidationRequestBody |
*RequestBodyApi* | [**post_maximum_validation_with_unsigned_integer_request_body**](docs/RequestBodyApi.md#post_maximum_validation_with_unsigned_integer_request_body) | **POST** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody | *OperationRequestBodyApi* | [**post_maximum_validation_with_unsigned_integer_request_body**](docs/OperationRequestBodyApi.md#post_maximum_validation_with_unsigned_integer_request_body) | **POST** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody |
*RequestBodyApi* | [**post_maxitems_validation_request_body**](docs/RequestBodyApi.md#post_maxitems_validation_request_body) | **POST** /requestBody/postMaxitemsValidationRequestBody | *OperationRequestBodyApi* | [**post_maxitems_validation_request_body**](docs/OperationRequestBodyApi.md#post_maxitems_validation_request_body) | **POST** /requestBody/postMaxitemsValidationRequestBody |
*RequestBodyApi* | [**post_maxlength_validation_request_body**](docs/RequestBodyApi.md#post_maxlength_validation_request_body) | **POST** /requestBody/postMaxlengthValidationRequestBody | *OperationRequestBodyApi* | [**post_maxlength_validation_request_body**](docs/OperationRequestBodyApi.md#post_maxlength_validation_request_body) | **POST** /requestBody/postMaxlengthValidationRequestBody |
*RequestBodyApi* | [**post_maxproperties0_means_the_object_is_empty_request_body**](docs/RequestBodyApi.md#post_maxproperties0_means_the_object_is_empty_request_body) | **POST** /requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody | *OperationRequestBodyApi* | [**post_maxproperties0_means_the_object_is_empty_request_body**](docs/OperationRequestBodyApi.md#post_maxproperties0_means_the_object_is_empty_request_body) | **POST** /requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody |
*RequestBodyApi* | [**post_maxproperties_validation_request_body**](docs/RequestBodyApi.md#post_maxproperties_validation_request_body) | **POST** /requestBody/postMaxpropertiesValidationRequestBody | *OperationRequestBodyApi* | [**post_maxproperties_validation_request_body**](docs/OperationRequestBodyApi.md#post_maxproperties_validation_request_body) | **POST** /requestBody/postMaxpropertiesValidationRequestBody |
*RequestBodyApi* | [**post_minimum_validation_request_body**](docs/RequestBodyApi.md#post_minimum_validation_request_body) | **POST** /requestBody/postMinimumValidationRequestBody | *OperationRequestBodyApi* | [**post_minimum_validation_request_body**](docs/OperationRequestBodyApi.md#post_minimum_validation_request_body) | **POST** /requestBody/postMinimumValidationRequestBody |
*RequestBodyApi* | [**post_minimum_validation_with_signed_integer_request_body**](docs/RequestBodyApi.md#post_minimum_validation_with_signed_integer_request_body) | **POST** /requestBody/postMinimumValidationWithSignedIntegerRequestBody | *OperationRequestBodyApi* | [**post_minimum_validation_with_signed_integer_request_body**](docs/OperationRequestBodyApi.md#post_minimum_validation_with_signed_integer_request_body) | **POST** /requestBody/postMinimumValidationWithSignedIntegerRequestBody |
*RequestBodyApi* | [**post_minitems_validation_request_body**](docs/RequestBodyApi.md#post_minitems_validation_request_body) | **POST** /requestBody/postMinitemsValidationRequestBody | *OperationRequestBodyApi* | [**post_minitems_validation_request_body**](docs/OperationRequestBodyApi.md#post_minitems_validation_request_body) | **POST** /requestBody/postMinitemsValidationRequestBody |
*RequestBodyApi* | [**post_minlength_validation_request_body**](docs/RequestBodyApi.md#post_minlength_validation_request_body) | **POST** /requestBody/postMinlengthValidationRequestBody | *OperationRequestBodyApi* | [**post_minlength_validation_request_body**](docs/OperationRequestBodyApi.md#post_minlength_validation_request_body) | **POST** /requestBody/postMinlengthValidationRequestBody |
*RequestBodyApi* | [**post_minproperties_validation_request_body**](docs/RequestBodyApi.md#post_minproperties_validation_request_body) | **POST** /requestBody/postMinpropertiesValidationRequestBody | *OperationRequestBodyApi* | [**post_minproperties_validation_request_body**](docs/OperationRequestBodyApi.md#post_minproperties_validation_request_body) | **POST** /requestBody/postMinpropertiesValidationRequestBody |
*RequestBodyApi* | [**post_nested_allof_to_check_validation_semantics_request_body**](docs/RequestBodyApi.md#post_nested_allof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody | *OperationRequestBodyApi* | [**post_nested_allof_to_check_validation_semantics_request_body**](docs/OperationRequestBodyApi.md#post_nested_allof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody |
*RequestBodyApi* | [**post_nested_anyof_to_check_validation_semantics_request_body**](docs/RequestBodyApi.md#post_nested_anyof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody | *OperationRequestBodyApi* | [**post_nested_anyof_to_check_validation_semantics_request_body**](docs/OperationRequestBodyApi.md#post_nested_anyof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody |
*RequestBodyApi* | [**post_nested_items_request_body**](docs/RequestBodyApi.md#post_nested_items_request_body) | **POST** /requestBody/postNestedItemsRequestBody | *OperationRequestBodyApi* | [**post_nested_items_request_body**](docs/OperationRequestBodyApi.md#post_nested_items_request_body) | **POST** /requestBody/postNestedItemsRequestBody |
*RequestBodyApi* | [**post_nested_oneof_to_check_validation_semantics_request_body**](docs/RequestBodyApi.md#post_nested_oneof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedOneofToCheckValidationSemanticsRequestBody | *OperationRequestBodyApi* | [**post_nested_oneof_to_check_validation_semantics_request_body**](docs/OperationRequestBodyApi.md#post_nested_oneof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedOneofToCheckValidationSemanticsRequestBody |
*RequestBodyApi* | [**post_not_more_complex_schema_request_body**](docs/RequestBodyApi.md#post_not_more_complex_schema_request_body) | **POST** /requestBody/postNotMoreComplexSchemaRequestBody | *OperationRequestBodyApi* | [**post_not_more_complex_schema_request_body**](docs/OperationRequestBodyApi.md#post_not_more_complex_schema_request_body) | **POST** /requestBody/postNotMoreComplexSchemaRequestBody |
*RequestBodyApi* | [**post_not_request_body**](docs/RequestBodyApi.md#post_not_request_body) | **POST** /requestBody/postNotRequestBody | *OperationRequestBodyApi* | [**post_not_request_body**](docs/OperationRequestBodyApi.md#post_not_request_body) | **POST** /requestBody/postNotRequestBody |
*RequestBodyApi* | [**post_nul_characters_in_strings_request_body**](docs/RequestBodyApi.md#post_nul_characters_in_strings_request_body) | **POST** /requestBody/postNulCharactersInStringsRequestBody | *OperationRequestBodyApi* | [**post_nul_characters_in_strings_request_body**](docs/OperationRequestBodyApi.md#post_nul_characters_in_strings_request_body) | **POST** /requestBody/postNulCharactersInStringsRequestBody |
*RequestBodyApi* | [**post_null_type_matches_only_the_null_object_request_body**](docs/RequestBodyApi.md#post_null_type_matches_only_the_null_object_request_body) | **POST** /requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody | *OperationRequestBodyApi* | [**post_null_type_matches_only_the_null_object_request_body**](docs/OperationRequestBodyApi.md#post_null_type_matches_only_the_null_object_request_body) | **POST** /requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody |
*RequestBodyApi* | [**post_number_type_matches_numbers_request_body**](docs/RequestBodyApi.md#post_number_type_matches_numbers_request_body) | **POST** /requestBody/postNumberTypeMatchesNumbersRequestBody | *OperationRequestBodyApi* | [**post_number_type_matches_numbers_request_body**](docs/OperationRequestBodyApi.md#post_number_type_matches_numbers_request_body) | **POST** /requestBody/postNumberTypeMatchesNumbersRequestBody |
*RequestBodyApi* | [**post_object_properties_validation_request_body**](docs/RequestBodyApi.md#post_object_properties_validation_request_body) | **POST** /requestBody/postObjectPropertiesValidationRequestBody | *OperationRequestBodyApi* | [**post_object_properties_validation_request_body**](docs/OperationRequestBodyApi.md#post_object_properties_validation_request_body) | **POST** /requestBody/postObjectPropertiesValidationRequestBody |
*RequestBodyApi* | [**post_object_type_matches_objects_request_body**](docs/RequestBodyApi.md#post_object_type_matches_objects_request_body) | **POST** /requestBody/postObjectTypeMatchesObjectsRequestBody | *OperationRequestBodyApi* | [**post_object_type_matches_objects_request_body**](docs/OperationRequestBodyApi.md#post_object_type_matches_objects_request_body) | **POST** /requestBody/postObjectTypeMatchesObjectsRequestBody |
*RequestBodyApi* | [**post_oneof_complex_types_request_body**](docs/RequestBodyApi.md#post_oneof_complex_types_request_body) | **POST** /requestBody/postOneofComplexTypesRequestBody | *OperationRequestBodyApi* | [**post_oneof_complex_types_request_body**](docs/OperationRequestBodyApi.md#post_oneof_complex_types_request_body) | **POST** /requestBody/postOneofComplexTypesRequestBody |
*RequestBodyApi* | [**post_oneof_request_body**](docs/RequestBodyApi.md#post_oneof_request_body) | **POST** /requestBody/postOneofRequestBody | *OperationRequestBodyApi* | [**post_oneof_request_body**](docs/OperationRequestBodyApi.md#post_oneof_request_body) | **POST** /requestBody/postOneofRequestBody |
*RequestBodyApi* | [**post_oneof_with_base_schema_request_body**](docs/RequestBodyApi.md#post_oneof_with_base_schema_request_body) | **POST** /requestBody/postOneofWithBaseSchemaRequestBody | *OperationRequestBodyApi* | [**post_oneof_with_base_schema_request_body**](docs/OperationRequestBodyApi.md#post_oneof_with_base_schema_request_body) | **POST** /requestBody/postOneofWithBaseSchemaRequestBody |
*RequestBodyApi* | [**post_oneof_with_empty_schema_request_body**](docs/RequestBodyApi.md#post_oneof_with_empty_schema_request_body) | **POST** /requestBody/postOneofWithEmptySchemaRequestBody | *OperationRequestBodyApi* | [**post_oneof_with_empty_schema_request_body**](docs/OperationRequestBodyApi.md#post_oneof_with_empty_schema_request_body) | **POST** /requestBody/postOneofWithEmptySchemaRequestBody |
*RequestBodyApi* | [**post_pattern_is_not_anchored_request_body**](docs/RequestBodyApi.md#post_pattern_is_not_anchored_request_body) | **POST** /requestBody/postPatternIsNotAnchoredRequestBody | *OperationRequestBodyApi* | [**post_pattern_is_not_anchored_request_body**](docs/OperationRequestBodyApi.md#post_pattern_is_not_anchored_request_body) | **POST** /requestBody/postPatternIsNotAnchoredRequestBody |
*RequestBodyApi* | [**post_pattern_validation_request_body**](docs/RequestBodyApi.md#post_pattern_validation_request_body) | **POST** /requestBody/postPatternValidationRequestBody | *OperationRequestBodyApi* | [**post_pattern_validation_request_body**](docs/OperationRequestBodyApi.md#post_pattern_validation_request_body) | **POST** /requestBody/postPatternValidationRequestBody |
*RequestBodyApi* | [**post_properties_with_escaped_characters_request_body**](docs/RequestBodyApi.md#post_properties_with_escaped_characters_request_body) | **POST** /requestBody/postPropertiesWithEscapedCharactersRequestBody | *OperationRequestBodyApi* | [**post_properties_with_escaped_characters_request_body**](docs/OperationRequestBodyApi.md#post_properties_with_escaped_characters_request_body) | **POST** /requestBody/postPropertiesWithEscapedCharactersRequestBody |
*RequestBodyApi* | [**post_property_named_ref_that_is_not_a_reference_request_body**](docs/RequestBodyApi.md#post_property_named_ref_that_is_not_a_reference_request_body) | **POST** /requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody | *OperationRequestBodyApi* | [**post_property_named_ref_that_is_not_a_reference_request_body**](docs/OperationRequestBodyApi.md#post_property_named_ref_that_is_not_a_reference_request_body) | **POST** /requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody |
*RequestBodyApi* | [**post_ref_in_additionalproperties_request_body**](docs/RequestBodyApi.md#post_ref_in_additionalproperties_request_body) | **POST** /requestBody/postRefInAdditionalpropertiesRequestBody | *OperationRequestBodyApi* | [**post_ref_in_additionalproperties_request_body**](docs/OperationRequestBodyApi.md#post_ref_in_additionalproperties_request_body) | **POST** /requestBody/postRefInAdditionalpropertiesRequestBody |
*RequestBodyApi* | [**post_ref_in_allof_request_body**](docs/RequestBodyApi.md#post_ref_in_allof_request_body) | **POST** /requestBody/postRefInAllofRequestBody | *OperationRequestBodyApi* | [**post_ref_in_allof_request_body**](docs/OperationRequestBodyApi.md#post_ref_in_allof_request_body) | **POST** /requestBody/postRefInAllofRequestBody |
*RequestBodyApi* | [**post_ref_in_anyof_request_body**](docs/RequestBodyApi.md#post_ref_in_anyof_request_body) | **POST** /requestBody/postRefInAnyofRequestBody | *OperationRequestBodyApi* | [**post_ref_in_anyof_request_body**](docs/OperationRequestBodyApi.md#post_ref_in_anyof_request_body) | **POST** /requestBody/postRefInAnyofRequestBody |
*RequestBodyApi* | [**post_ref_in_items_request_body**](docs/RequestBodyApi.md#post_ref_in_items_request_body) | **POST** /requestBody/postRefInItemsRequestBody | *OperationRequestBodyApi* | [**post_ref_in_items_request_body**](docs/OperationRequestBodyApi.md#post_ref_in_items_request_body) | **POST** /requestBody/postRefInItemsRequestBody |
*RequestBodyApi* | [**post_ref_in_oneof_request_body**](docs/RequestBodyApi.md#post_ref_in_oneof_request_body) | **POST** /requestBody/postRefInOneofRequestBody | *OperationRequestBodyApi* | [**post_ref_in_oneof_request_body**](docs/OperationRequestBodyApi.md#post_ref_in_oneof_request_body) | **POST** /requestBody/postRefInOneofRequestBody |
*RequestBodyApi* | [**post_ref_in_property_request_body**](docs/RequestBodyApi.md#post_ref_in_property_request_body) | **POST** /requestBody/postRefInPropertyRequestBody | *OperationRequestBodyApi* | [**post_ref_in_property_request_body**](docs/OperationRequestBodyApi.md#post_ref_in_property_request_body) | **POST** /requestBody/postRefInPropertyRequestBody |
*RequestBodyApi* | [**post_required_default_validation_request_body**](docs/RequestBodyApi.md#post_required_default_validation_request_body) | **POST** /requestBody/postRequiredDefaultValidationRequestBody | *OperationRequestBodyApi* | [**post_required_default_validation_request_body**](docs/OperationRequestBodyApi.md#post_required_default_validation_request_body) | **POST** /requestBody/postRequiredDefaultValidationRequestBody |
*RequestBodyApi* | [**post_required_validation_request_body**](docs/RequestBodyApi.md#post_required_validation_request_body) | **POST** /requestBody/postRequiredValidationRequestBody | *OperationRequestBodyApi* | [**post_required_validation_request_body**](docs/OperationRequestBodyApi.md#post_required_validation_request_body) | **POST** /requestBody/postRequiredValidationRequestBody |
*RequestBodyApi* | [**post_required_with_empty_array_request_body**](docs/RequestBodyApi.md#post_required_with_empty_array_request_body) | **POST** /requestBody/postRequiredWithEmptyArrayRequestBody | *OperationRequestBodyApi* | [**post_required_with_empty_array_request_body**](docs/OperationRequestBodyApi.md#post_required_with_empty_array_request_body) | **POST** /requestBody/postRequiredWithEmptyArrayRequestBody |
*RequestBodyApi* | [**post_simple_enum_validation_request_body**](docs/RequestBodyApi.md#post_simple_enum_validation_request_body) | **POST** /requestBody/postSimpleEnumValidationRequestBody | *OperationRequestBodyApi* | [**post_simple_enum_validation_request_body**](docs/OperationRequestBodyApi.md#post_simple_enum_validation_request_body) | **POST** /requestBody/postSimpleEnumValidationRequestBody |
*RequestBodyApi* | [**post_string_type_matches_strings_request_body**](docs/RequestBodyApi.md#post_string_type_matches_strings_request_body) | **POST** /requestBody/postStringTypeMatchesStringsRequestBody | *OperationRequestBodyApi* | [**post_string_type_matches_strings_request_body**](docs/OperationRequestBodyApi.md#post_string_type_matches_strings_request_body) | **POST** /requestBody/postStringTypeMatchesStringsRequestBody |
*RequestBodyApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](docs/RequestBodyApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body) | **POST** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody | *OperationRequestBodyApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](docs/OperationRequestBodyApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body) | **POST** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody |
*RequestBodyApi* | [**post_uniqueitems_false_validation_request_body**](docs/RequestBodyApi.md#post_uniqueitems_false_validation_request_body) | **POST** /requestBody/postUniqueitemsFalseValidationRequestBody | *OperationRequestBodyApi* | [**post_uniqueitems_false_validation_request_body**](docs/OperationRequestBodyApi.md#post_uniqueitems_false_validation_request_body) | **POST** /requestBody/postUniqueitemsFalseValidationRequestBody |
*RequestBodyApi* | [**post_uniqueitems_validation_request_body**](docs/RequestBodyApi.md#post_uniqueitems_validation_request_body) | **POST** /requestBody/postUniqueitemsValidationRequestBody | *OperationRequestBodyApi* | [**post_uniqueitems_validation_request_body**](docs/OperationRequestBodyApi.md#post_uniqueitems_validation_request_body) | **POST** /requestBody/postUniqueitemsValidationRequestBody |
*RequestBodyApi* | [**post_uri_format_request_body**](docs/RequestBodyApi.md#post_uri_format_request_body) | **POST** /requestBody/postUriFormatRequestBody | *OperationRequestBodyApi* | [**post_uri_format_request_body**](docs/OperationRequestBodyApi.md#post_uri_format_request_body) | **POST** /requestBody/postUriFormatRequestBody |
*RequestBodyApi* | [**post_uri_reference_format_request_body**](docs/RequestBodyApi.md#post_uri_reference_format_request_body) | **POST** /requestBody/postUriReferenceFormatRequestBody | *OperationRequestBodyApi* | [**post_uri_reference_format_request_body**](docs/OperationRequestBodyApi.md#post_uri_reference_format_request_body) | **POST** /requestBody/postUriReferenceFormatRequestBody |
*RequestBodyApi* | [**post_uri_template_format_request_body**](docs/RequestBodyApi.md#post_uri_template_format_request_body) | **POST** /requestBody/postUriTemplateFormatRequestBody | *OperationRequestBodyApi* | [**post_uri_template_format_request_body**](docs/OperationRequestBodyApi.md#post_uri_template_format_request_body) | **POST** /requestBody/postUriTemplateFormatRequestBody |
*PathPostApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_request_body**](docs/PathPostApi.md#post_additionalproperties_allows_a_schema_which_should_validate_request_body) | **POST** /requestBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody |
*PathPostApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**](docs/PathPostApi.md#post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes |
*PathPostApi* | [**post_additionalproperties_are_allowed_by_default_request_body**](docs/PathPostApi.md#post_additionalproperties_are_allowed_by_default_request_body) | **POST** /requestBody/postAdditionalpropertiesAreAllowedByDefaultRequestBody |
*PathPostApi* | [**post_additionalproperties_are_allowed_by_default_response_body_for_content_types**](docs/PathPostApi.md#post_additionalproperties_are_allowed_by_default_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes |
*PathPostApi* | [**post_additionalproperties_can_exist_by_itself_request_body**](docs/PathPostApi.md#post_additionalproperties_can_exist_by_itself_request_body) | **POST** /requestBody/postAdditionalpropertiesCanExistByItselfRequestBody |
*PathPostApi* | [**post_additionalproperties_can_exist_by_itself_response_body_for_content_types**](docs/PathPostApi.md#post_additionalproperties_can_exist_by_itself_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes |
*PathPostApi* | [**post_additionalproperties_should_not_look_in_applicators_request_body**](docs/PathPostApi.md#post_additionalproperties_should_not_look_in_applicators_request_body) | **POST** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody |
*PathPostApi* | [**post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**](docs/PathPostApi.md#post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_combined_with_anyof_oneof_request_body**](docs/PathPostApi.md#post_allof_combined_with_anyof_oneof_request_body) | **POST** /requestBody/postAllofCombinedWithAnyofOneofRequestBody |
*PathPostApi* | [**post_allof_combined_with_anyof_oneof_response_body_for_content_types**](docs/PathPostApi.md#post_allof_combined_with_anyof_oneof_response_body_for_content_types) | **POST** /responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_request_body**](docs/PathPostApi.md#post_allof_request_body) | **POST** /requestBody/postAllofRequestBody |
*PathPostApi* | [**post_allof_response_body_for_content_types**](docs/PathPostApi.md#post_allof_response_body_for_content_types) | **POST** /responseBody/postAllofResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_simple_types_request_body**](docs/PathPostApi.md#post_allof_simple_types_request_body) | **POST** /requestBody/postAllofSimpleTypesRequestBody |
*PathPostApi* | [**post_allof_simple_types_response_body_for_content_types**](docs/PathPostApi.md#post_allof_simple_types_response_body_for_content_types) | **POST** /responseBody/postAllofSimpleTypesResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_with_base_schema_request_body**](docs/PathPostApi.md#post_allof_with_base_schema_request_body) | **POST** /requestBody/postAllofWithBaseSchemaRequestBody |
*PathPostApi* | [**post_allof_with_base_schema_response_body_for_content_types**](docs/PathPostApi.md#post_allof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_with_one_empty_schema_request_body**](docs/PathPostApi.md#post_allof_with_one_empty_schema_request_body) | **POST** /requestBody/postAllofWithOneEmptySchemaRequestBody |
*PathPostApi* | [**post_allof_with_one_empty_schema_response_body_for_content_types**](docs/PathPostApi.md#post_allof_with_one_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_with_the_first_empty_schema_request_body**](docs/PathPostApi.md#post_allof_with_the_first_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheFirstEmptySchemaRequestBody |
*PathPostApi* | [**post_allof_with_the_first_empty_schema_response_body_for_content_types**](docs/PathPostApi.md#post_allof_with_the_first_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_with_the_last_empty_schema_request_body**](docs/PathPostApi.md#post_allof_with_the_last_empty_schema_request_body) | **POST** /requestBody/postAllofWithTheLastEmptySchemaRequestBody |
*PathPostApi* | [**post_allof_with_the_last_empty_schema_response_body_for_content_types**](docs/PathPostApi.md#post_allof_with_the_last_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_allof_with_two_empty_schemas_request_body**](docs/PathPostApi.md#post_allof_with_two_empty_schemas_request_body) | **POST** /requestBody/postAllofWithTwoEmptySchemasRequestBody |
*PathPostApi* | [**post_allof_with_two_empty_schemas_response_body_for_content_types**](docs/PathPostApi.md#post_allof_with_two_empty_schemas_response_body_for_content_types) | **POST** /responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes |
*PathPostApi* | [**post_anyof_complex_types_request_body**](docs/PathPostApi.md#post_anyof_complex_types_request_body) | **POST** /requestBody/postAnyofComplexTypesRequestBody |
*PathPostApi* | [**post_anyof_complex_types_response_body_for_content_types**](docs/PathPostApi.md#post_anyof_complex_types_response_body_for_content_types) | **POST** /responseBody/postAnyofComplexTypesResponseBodyForContentTypes |
*PathPostApi* | [**post_anyof_request_body**](docs/PathPostApi.md#post_anyof_request_body) | **POST** /requestBody/postAnyofRequestBody |
*PathPostApi* | [**post_anyof_response_body_for_content_types**](docs/PathPostApi.md#post_anyof_response_body_for_content_types) | **POST** /responseBody/postAnyofResponseBodyForContentTypes |
*PathPostApi* | [**post_anyof_with_base_schema_request_body**](docs/PathPostApi.md#post_anyof_with_base_schema_request_body) | **POST** /requestBody/postAnyofWithBaseSchemaRequestBody |
*PathPostApi* | [**post_anyof_with_base_schema_response_body_for_content_types**](docs/PathPostApi.md#post_anyof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_anyof_with_one_empty_schema_request_body**](docs/PathPostApi.md#post_anyof_with_one_empty_schema_request_body) | **POST** /requestBody/postAnyofWithOneEmptySchemaRequestBody |
*PathPostApi* | [**post_anyof_with_one_empty_schema_response_body_for_content_types**](docs/PathPostApi.md#post_anyof_with_one_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_array_type_matches_arrays_request_body**](docs/PathPostApi.md#post_array_type_matches_arrays_request_body) | **POST** /requestBody/postArrayTypeMatchesArraysRequestBody |
*PathPostApi* | [**post_array_type_matches_arrays_response_body_for_content_types**](docs/PathPostApi.md#post_array_type_matches_arrays_response_body_for_content_types) | **POST** /responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes |
*PathPostApi* | [**post_boolean_type_matches_booleans_request_body**](docs/PathPostApi.md#post_boolean_type_matches_booleans_request_body) | **POST** /requestBody/postBooleanTypeMatchesBooleansRequestBody |
*PathPostApi* | [**post_boolean_type_matches_booleans_response_body_for_content_types**](docs/PathPostApi.md#post_boolean_type_matches_booleans_response_body_for_content_types) | **POST** /responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes |
*PathPostApi* | [**post_by_int_request_body**](docs/PathPostApi.md#post_by_int_request_body) | **POST** /requestBody/postByIntRequestBody |
*PathPostApi* | [**post_by_int_response_body_for_content_types**](docs/PathPostApi.md#post_by_int_response_body_for_content_types) | **POST** /responseBody/postByIntResponseBodyForContentTypes |
*PathPostApi* | [**post_by_number_request_body**](docs/PathPostApi.md#post_by_number_request_body) | **POST** /requestBody/postByNumberRequestBody |
*PathPostApi* | [**post_by_number_response_body_for_content_types**](docs/PathPostApi.md#post_by_number_response_body_for_content_types) | **POST** /responseBody/postByNumberResponseBodyForContentTypes |
*PathPostApi* | [**post_by_small_number_request_body**](docs/PathPostApi.md#post_by_small_number_request_body) | **POST** /requestBody/postBySmallNumberRequestBody |
*PathPostApi* | [**post_by_small_number_response_body_for_content_types**](docs/PathPostApi.md#post_by_small_number_response_body_for_content_types) | **POST** /responseBody/postBySmallNumberResponseBodyForContentTypes |
*PathPostApi* | [**post_date_time_format_request_body**](docs/PathPostApi.md#post_date_time_format_request_body) | **POST** /requestBody/postDateTimeFormatRequestBody |
*PathPostApi* | [**post_date_time_format_response_body_for_content_types**](docs/PathPostApi.md#post_date_time_format_response_body_for_content_types) | **POST** /responseBody/postDateTimeFormatResponseBodyForContentTypes |
*PathPostApi* | [**post_email_format_request_body**](docs/PathPostApi.md#post_email_format_request_body) | **POST** /requestBody/postEmailFormatRequestBody |
*PathPostApi* | [**post_email_format_response_body_for_content_types**](docs/PathPostApi.md#post_email_format_response_body_for_content_types) | **POST** /responseBody/postEmailFormatResponseBodyForContentTypes |
*PathPostApi* | [**post_enum_with0_does_not_match_false_request_body**](docs/PathPostApi.md#post_enum_with0_does_not_match_false_request_body) | **POST** /requestBody/postEnumWith0DoesNotMatchFalseRequestBody |
*PathPostApi* | [**post_enum_with0_does_not_match_false_response_body_for_content_types**](docs/PathPostApi.md#post_enum_with0_does_not_match_false_response_body_for_content_types) | **POST** /responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes |
*PathPostApi* | [**post_enum_with1_does_not_match_true_request_body**](docs/PathPostApi.md#post_enum_with1_does_not_match_true_request_body) | **POST** /requestBody/postEnumWith1DoesNotMatchTrueRequestBody |
*PathPostApi* | [**post_enum_with1_does_not_match_true_response_body_for_content_types**](docs/PathPostApi.md#post_enum_with1_does_not_match_true_response_body_for_content_types) | **POST** /responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes |
*PathPostApi* | [**post_enum_with_escaped_characters_request_body**](docs/PathPostApi.md#post_enum_with_escaped_characters_request_body) | **POST** /requestBody/postEnumWithEscapedCharactersRequestBody |
*PathPostApi* | [**post_enum_with_escaped_characters_response_body_for_content_types**](docs/PathPostApi.md#post_enum_with_escaped_characters_response_body_for_content_types) | **POST** /responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes |
*PathPostApi* | [**post_enum_with_false_does_not_match0_request_body**](docs/PathPostApi.md#post_enum_with_false_does_not_match0_request_body) | **POST** /requestBody/postEnumWithFalseDoesNotMatch0RequestBody |
*PathPostApi* | [**post_enum_with_false_does_not_match0_response_body_for_content_types**](docs/PathPostApi.md#post_enum_with_false_does_not_match0_response_body_for_content_types) | **POST** /responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes |
*PathPostApi* | [**post_enum_with_true_does_not_match1_request_body**](docs/PathPostApi.md#post_enum_with_true_does_not_match1_request_body) | **POST** /requestBody/postEnumWithTrueDoesNotMatch1RequestBody |
*PathPostApi* | [**post_enum_with_true_does_not_match1_response_body_for_content_types**](docs/PathPostApi.md#post_enum_with_true_does_not_match1_response_body_for_content_types) | **POST** /responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes |
*PathPostApi* | [**post_enums_in_properties_request_body**](docs/PathPostApi.md#post_enums_in_properties_request_body) | **POST** /requestBody/postEnumsInPropertiesRequestBody |
*PathPostApi* | [**post_enums_in_properties_response_body_for_content_types**](docs/PathPostApi.md#post_enums_in_properties_response_body_for_content_types) | **POST** /responseBody/postEnumsInPropertiesResponseBodyForContentTypes |
*PathPostApi* | [**post_forbidden_property_request_body**](docs/PathPostApi.md#post_forbidden_property_request_body) | **POST** /requestBody/postForbiddenPropertyRequestBody |
*PathPostApi* | [**post_forbidden_property_response_body_for_content_types**](docs/PathPostApi.md#post_forbidden_property_response_body_for_content_types) | **POST** /responseBody/postForbiddenPropertyResponseBodyForContentTypes |
*PathPostApi* | [**post_hostname_format_request_body**](docs/PathPostApi.md#post_hostname_format_request_body) | **POST** /requestBody/postHostnameFormatRequestBody |
*PathPostApi* | [**post_hostname_format_response_body_for_content_types**](docs/PathPostApi.md#post_hostname_format_response_body_for_content_types) | **POST** /responseBody/postHostnameFormatResponseBodyForContentTypes |
*PathPostApi* | [**post_integer_type_matches_integers_request_body**](docs/PathPostApi.md#post_integer_type_matches_integers_request_body) | **POST** /requestBody/postIntegerTypeMatchesIntegersRequestBody |
*PathPostApi* | [**post_integer_type_matches_integers_response_body_for_content_types**](docs/PathPostApi.md#post_integer_type_matches_integers_response_body_for_content_types) | **POST** /responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes |
*PathPostApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](docs/PathPostApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body) | **POST** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody |
*PathPostApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**](docs/PathPostApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types) | **POST** /responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes |
*PathPostApi* | [**post_invalid_string_value_for_default_request_body**](docs/PathPostApi.md#post_invalid_string_value_for_default_request_body) | **POST** /requestBody/postInvalidStringValueForDefaultRequestBody |
*PathPostApi* | [**post_invalid_string_value_for_default_response_body_for_content_types**](docs/PathPostApi.md#post_invalid_string_value_for_default_response_body_for_content_types) | **POST** /responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes |
*PathPostApi* | [**post_ipv4_format_request_body**](docs/PathPostApi.md#post_ipv4_format_request_body) | **POST** /requestBody/postIpv4FormatRequestBody |
*PathPostApi* | [**post_ipv4_format_response_body_for_content_types**](docs/PathPostApi.md#post_ipv4_format_response_body_for_content_types) | **POST** /responseBody/postIpv4FormatResponseBodyForContentTypes |
*PathPostApi* | [**post_ipv6_format_request_body**](docs/PathPostApi.md#post_ipv6_format_request_body) | **POST** /requestBody/postIpv6FormatRequestBody |
*PathPostApi* | [**post_ipv6_format_response_body_for_content_types**](docs/PathPostApi.md#post_ipv6_format_response_body_for_content_types) | **POST** /responseBody/postIpv6FormatResponseBodyForContentTypes |
*PathPostApi* | [**post_json_pointer_format_request_body**](docs/PathPostApi.md#post_json_pointer_format_request_body) | **POST** /requestBody/postJsonPointerFormatRequestBody |
*PathPostApi* | [**post_json_pointer_format_response_body_for_content_types**](docs/PathPostApi.md#post_json_pointer_format_response_body_for_content_types) | **POST** /responseBody/postJsonPointerFormatResponseBodyForContentTypes |
*PathPostApi* | [**post_maximum_validation_request_body**](docs/PathPostApi.md#post_maximum_validation_request_body) | **POST** /requestBody/postMaximumValidationRequestBody |
*PathPostApi* | [**post_maximum_validation_response_body_for_content_types**](docs/PathPostApi.md#post_maximum_validation_response_body_for_content_types) | **POST** /responseBody/postMaximumValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_maximum_validation_with_unsigned_integer_request_body**](docs/PathPostApi.md#post_maximum_validation_with_unsigned_integer_request_body) | **POST** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody |
*PathPostApi* | [**post_maximum_validation_with_unsigned_integer_response_body_for_content_types**](docs/PathPostApi.md#post_maximum_validation_with_unsigned_integer_response_body_for_content_types) | **POST** /responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes |
*PathPostApi* | [**post_maxitems_validation_request_body**](docs/PathPostApi.md#post_maxitems_validation_request_body) | **POST** /requestBody/postMaxitemsValidationRequestBody |
*PathPostApi* | [**post_maxitems_validation_response_body_for_content_types**](docs/PathPostApi.md#post_maxitems_validation_response_body_for_content_types) | **POST** /responseBody/postMaxitemsValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_maxlength_validation_request_body**](docs/PathPostApi.md#post_maxlength_validation_request_body) | **POST** /requestBody/postMaxlengthValidationRequestBody |
*PathPostApi* | [**post_maxlength_validation_response_body_for_content_types**](docs/PathPostApi.md#post_maxlength_validation_response_body_for_content_types) | **POST** /responseBody/postMaxlengthValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_maxproperties0_means_the_object_is_empty_request_body**](docs/PathPostApi.md#post_maxproperties0_means_the_object_is_empty_request_body) | **POST** /requestBody/postMaxproperties0MeansTheObjectIsEmptyRequestBody |
*PathPostApi* | [**post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**](docs/PathPostApi.md#post_maxproperties0_means_the_object_is_empty_response_body_for_content_types) | **POST** /responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes |
*PathPostApi* | [**post_maxproperties_validation_request_body**](docs/PathPostApi.md#post_maxproperties_validation_request_body) | **POST** /requestBody/postMaxpropertiesValidationRequestBody |
*PathPostApi* | [**post_maxproperties_validation_response_body_for_content_types**](docs/PathPostApi.md#post_maxproperties_validation_response_body_for_content_types) | **POST** /responseBody/postMaxpropertiesValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_minimum_validation_request_body**](docs/PathPostApi.md#post_minimum_validation_request_body) | **POST** /requestBody/postMinimumValidationRequestBody |
*PathPostApi* | [**post_minimum_validation_response_body_for_content_types**](docs/PathPostApi.md#post_minimum_validation_response_body_for_content_types) | **POST** /responseBody/postMinimumValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_minimum_validation_with_signed_integer_request_body**](docs/PathPostApi.md#post_minimum_validation_with_signed_integer_request_body) | **POST** /requestBody/postMinimumValidationWithSignedIntegerRequestBody |
*PathPostApi* | [**post_minimum_validation_with_signed_integer_response_body_for_content_types**](docs/PathPostApi.md#post_minimum_validation_with_signed_integer_response_body_for_content_types) | **POST** /responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes |
*PathPostApi* | [**post_minitems_validation_request_body**](docs/PathPostApi.md#post_minitems_validation_request_body) | **POST** /requestBody/postMinitemsValidationRequestBody |
*PathPostApi* | [**post_minitems_validation_response_body_for_content_types**](docs/PathPostApi.md#post_minitems_validation_response_body_for_content_types) | **POST** /responseBody/postMinitemsValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_minlength_validation_request_body**](docs/PathPostApi.md#post_minlength_validation_request_body) | **POST** /requestBody/postMinlengthValidationRequestBody |
*PathPostApi* | [**post_minlength_validation_response_body_for_content_types**](docs/PathPostApi.md#post_minlength_validation_response_body_for_content_types) | **POST** /responseBody/postMinlengthValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_minproperties_validation_request_body**](docs/PathPostApi.md#post_minproperties_validation_request_body) | **POST** /requestBody/postMinpropertiesValidationRequestBody |
*PathPostApi* | [**post_minproperties_validation_response_body_for_content_types**](docs/PathPostApi.md#post_minproperties_validation_response_body_for_content_types) | **POST** /responseBody/postMinpropertiesValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_nested_allof_to_check_validation_semantics_request_body**](docs/PathPostApi.md#post_nested_allof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody |
*PathPostApi* | [**post_nested_allof_to_check_validation_semantics_response_body_for_content_types**](docs/PathPostApi.md#post_nested_allof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes |
*PathPostApi* | [**post_nested_anyof_to_check_validation_semantics_request_body**](docs/PathPostApi.md#post_nested_anyof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody |
*PathPostApi* | [**post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**](docs/PathPostApi.md#post_nested_anyof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes |
*PathPostApi* | [**post_nested_items_request_body**](docs/PathPostApi.md#post_nested_items_request_body) | **POST** /requestBody/postNestedItemsRequestBody |
*PathPostApi* | [**post_nested_items_response_body_for_content_types**](docs/PathPostApi.md#post_nested_items_response_body_for_content_types) | **POST** /responseBody/postNestedItemsResponseBodyForContentTypes |
*PathPostApi* | [**post_nested_oneof_to_check_validation_semantics_request_body**](docs/PathPostApi.md#post_nested_oneof_to_check_validation_semantics_request_body) | **POST** /requestBody/postNestedOneofToCheckValidationSemanticsRequestBody |
*PathPostApi* | [**post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**](docs/PathPostApi.md#post_nested_oneof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes |
*PathPostApi* | [**post_not_more_complex_schema_request_body**](docs/PathPostApi.md#post_not_more_complex_schema_request_body) | **POST** /requestBody/postNotMoreComplexSchemaRequestBody |
*PathPostApi* | [**post_not_more_complex_schema_response_body_for_content_types**](docs/PathPostApi.md#post_not_more_complex_schema_response_body_for_content_types) | **POST** /responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_not_request_body**](docs/PathPostApi.md#post_not_request_body) | **POST** /requestBody/postNotRequestBody |
*PathPostApi* | [**post_not_response_body_for_content_types**](docs/PathPostApi.md#post_not_response_body_for_content_types) | **POST** /responseBody/postNotResponseBodyForContentTypes |
*PathPostApi* | [**post_nul_characters_in_strings_request_body**](docs/PathPostApi.md#post_nul_characters_in_strings_request_body) | **POST** /requestBody/postNulCharactersInStringsRequestBody |
*PathPostApi* | [**post_nul_characters_in_strings_response_body_for_content_types**](docs/PathPostApi.md#post_nul_characters_in_strings_response_body_for_content_types) | **POST** /responseBody/postNulCharactersInStringsResponseBodyForContentTypes |
*PathPostApi* | [**post_null_type_matches_only_the_null_object_request_body**](docs/PathPostApi.md#post_null_type_matches_only_the_null_object_request_body) | **POST** /requestBody/postNullTypeMatchesOnlyTheNullObjectRequestBody |
*PathPostApi* | [**post_null_type_matches_only_the_null_object_response_body_for_content_types**](docs/PathPostApi.md#post_null_type_matches_only_the_null_object_response_body_for_content_types) | **POST** /responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes |
*PathPostApi* | [**post_number_type_matches_numbers_request_body**](docs/PathPostApi.md#post_number_type_matches_numbers_request_body) | **POST** /requestBody/postNumberTypeMatchesNumbersRequestBody |
*PathPostApi* | [**post_number_type_matches_numbers_response_body_for_content_types**](docs/PathPostApi.md#post_number_type_matches_numbers_response_body_for_content_types) | **POST** /responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes |
*PathPostApi* | [**post_object_properties_validation_request_body**](docs/PathPostApi.md#post_object_properties_validation_request_body) | **POST** /requestBody/postObjectPropertiesValidationRequestBody |
*PathPostApi* | [**post_object_properties_validation_response_body_for_content_types**](docs/PathPostApi.md#post_object_properties_validation_response_body_for_content_types) | **POST** /responseBody/postObjectPropertiesValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_object_type_matches_objects_request_body**](docs/PathPostApi.md#post_object_type_matches_objects_request_body) | **POST** /requestBody/postObjectTypeMatchesObjectsRequestBody |
*PathPostApi* | [**post_object_type_matches_objects_response_body_for_content_types**](docs/PathPostApi.md#post_object_type_matches_objects_response_body_for_content_types) | **POST** /responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes |
*PathPostApi* | [**post_oneof_complex_types_request_body**](docs/PathPostApi.md#post_oneof_complex_types_request_body) | **POST** /requestBody/postOneofComplexTypesRequestBody |
*PathPostApi* | [**post_oneof_complex_types_response_body_for_content_types**](docs/PathPostApi.md#post_oneof_complex_types_response_body_for_content_types) | **POST** /responseBody/postOneofComplexTypesResponseBodyForContentTypes |
*PathPostApi* | [**post_oneof_request_body**](docs/PathPostApi.md#post_oneof_request_body) | **POST** /requestBody/postOneofRequestBody |
*PathPostApi* | [**post_oneof_response_body_for_content_types**](docs/PathPostApi.md#post_oneof_response_body_for_content_types) | **POST** /responseBody/postOneofResponseBodyForContentTypes |
*PathPostApi* | [**post_oneof_with_base_schema_request_body**](docs/PathPostApi.md#post_oneof_with_base_schema_request_body) | **POST** /requestBody/postOneofWithBaseSchemaRequestBody |
*PathPostApi* | [**post_oneof_with_base_schema_response_body_for_content_types**](docs/PathPostApi.md#post_oneof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_oneof_with_empty_schema_request_body**](docs/PathPostApi.md#post_oneof_with_empty_schema_request_body) | **POST** /requestBody/postOneofWithEmptySchemaRequestBody |
*PathPostApi* | [**post_oneof_with_empty_schema_response_body_for_content_types**](docs/PathPostApi.md#post_oneof_with_empty_schema_response_body_for_content_types) | **POST** /responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes |
*PathPostApi* | [**post_pattern_is_not_anchored_request_body**](docs/PathPostApi.md#post_pattern_is_not_anchored_request_body) | **POST** /requestBody/postPatternIsNotAnchoredRequestBody |
*PathPostApi* | [**post_pattern_is_not_anchored_response_body_for_content_types**](docs/PathPostApi.md#post_pattern_is_not_anchored_response_body_for_content_types) | **POST** /responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes |
*PathPostApi* | [**post_pattern_validation_request_body**](docs/PathPostApi.md#post_pattern_validation_request_body) | **POST** /requestBody/postPatternValidationRequestBody |
*PathPostApi* | [**post_pattern_validation_response_body_for_content_types**](docs/PathPostApi.md#post_pattern_validation_response_body_for_content_types) | **POST** /responseBody/postPatternValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_properties_with_escaped_characters_request_body**](docs/PathPostApi.md#post_properties_with_escaped_characters_request_body) | **POST** /requestBody/postPropertiesWithEscapedCharactersRequestBody |
*PathPostApi* | [**post_properties_with_escaped_characters_response_body_for_content_types**](docs/PathPostApi.md#post_properties_with_escaped_characters_response_body_for_content_types) | **POST** /responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes |
*PathPostApi* | [**post_property_named_ref_that_is_not_a_reference_request_body**](docs/PathPostApi.md#post_property_named_ref_that_is_not_a_reference_request_body) | **POST** /requestBody/postPropertyNamedRefThatIsNotAReferenceRequestBody |
*PathPostApi* | [**post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**](docs/PathPostApi.md#post_property_named_ref_that_is_not_a_reference_response_body_for_content_types) | **POST** /responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes |
*PathPostApi* | [**post_ref_in_additionalproperties_request_body**](docs/PathPostApi.md#post_ref_in_additionalproperties_request_body) | **POST** /requestBody/postRefInAdditionalpropertiesRequestBody |
*PathPostApi* | [**post_ref_in_additionalproperties_response_body_for_content_types**](docs/PathPostApi.md#post_ref_in_additionalproperties_response_body_for_content_types) | **POST** /responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes |
*PathPostApi* | [**post_ref_in_allof_request_body**](docs/PathPostApi.md#post_ref_in_allof_request_body) | **POST** /requestBody/postRefInAllofRequestBody |
*PathPostApi* | [**post_ref_in_allof_response_body_for_content_types**](docs/PathPostApi.md#post_ref_in_allof_response_body_for_content_types) | **POST** /responseBody/postRefInAllofResponseBodyForContentTypes |
*PathPostApi* | [**post_ref_in_anyof_request_body**](docs/PathPostApi.md#post_ref_in_anyof_request_body) | **POST** /requestBody/postRefInAnyofRequestBody |
*PathPostApi* | [**post_ref_in_anyof_response_body_for_content_types**](docs/PathPostApi.md#post_ref_in_anyof_response_body_for_content_types) | **POST** /responseBody/postRefInAnyofResponseBodyForContentTypes |
*PathPostApi* | [**post_ref_in_items_request_body**](docs/PathPostApi.md#post_ref_in_items_request_body) | **POST** /requestBody/postRefInItemsRequestBody |
*PathPostApi* | [**post_ref_in_items_response_body_for_content_types**](docs/PathPostApi.md#post_ref_in_items_response_body_for_content_types) | **POST** /responseBody/postRefInItemsResponseBodyForContentTypes |
*PathPostApi* | [**post_ref_in_oneof_request_body**](docs/PathPostApi.md#post_ref_in_oneof_request_body) | **POST** /requestBody/postRefInOneofRequestBody |
*PathPostApi* | [**post_ref_in_oneof_response_body_for_content_types**](docs/PathPostApi.md#post_ref_in_oneof_response_body_for_content_types) | **POST** /responseBody/postRefInOneofResponseBodyForContentTypes |
*PathPostApi* | [**post_ref_in_property_request_body**](docs/PathPostApi.md#post_ref_in_property_request_body) | **POST** /requestBody/postRefInPropertyRequestBody |
*PathPostApi* | [**post_ref_in_property_response_body_for_content_types**](docs/PathPostApi.md#post_ref_in_property_response_body_for_content_types) | **POST** /responseBody/postRefInPropertyResponseBodyForContentTypes |
*PathPostApi* | [**post_required_default_validation_request_body**](docs/PathPostApi.md#post_required_default_validation_request_body) | **POST** /requestBody/postRequiredDefaultValidationRequestBody |
*PathPostApi* | [**post_required_default_validation_response_body_for_content_types**](docs/PathPostApi.md#post_required_default_validation_response_body_for_content_types) | **POST** /responseBody/postRequiredDefaultValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_required_validation_request_body**](docs/PathPostApi.md#post_required_validation_request_body) | **POST** /requestBody/postRequiredValidationRequestBody |
*PathPostApi* | [**post_required_validation_response_body_for_content_types**](docs/PathPostApi.md#post_required_validation_response_body_for_content_types) | **POST** /responseBody/postRequiredValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_required_with_empty_array_request_body**](docs/PathPostApi.md#post_required_with_empty_array_request_body) | **POST** /requestBody/postRequiredWithEmptyArrayRequestBody |
*PathPostApi* | [**post_required_with_empty_array_response_body_for_content_types**](docs/PathPostApi.md#post_required_with_empty_array_response_body_for_content_types) | **POST** /responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes |
*PathPostApi* | [**post_simple_enum_validation_request_body**](docs/PathPostApi.md#post_simple_enum_validation_request_body) | **POST** /requestBody/postSimpleEnumValidationRequestBody |
*PathPostApi* | [**post_simple_enum_validation_response_body_for_content_types**](docs/PathPostApi.md#post_simple_enum_validation_response_body_for_content_types) | **POST** /responseBody/postSimpleEnumValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_string_type_matches_strings_request_body**](docs/PathPostApi.md#post_string_type_matches_strings_request_body) | **POST** /requestBody/postStringTypeMatchesStringsRequestBody |
*PathPostApi* | [**post_string_type_matches_strings_response_body_for_content_types**](docs/PathPostApi.md#post_string_type_matches_strings_response_body_for_content_types) | **POST** /responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes |
*PathPostApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](docs/PathPostApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body) | **POST** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody |
*PathPostApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**](docs/PathPostApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types) | **POST** /responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes |
*PathPostApi* | [**post_uniqueitems_false_validation_request_body**](docs/PathPostApi.md#post_uniqueitems_false_validation_request_body) | **POST** /requestBody/postUniqueitemsFalseValidationRequestBody |
*PathPostApi* | [**post_uniqueitems_false_validation_response_body_for_content_types**](docs/PathPostApi.md#post_uniqueitems_false_validation_response_body_for_content_types) | **POST** /responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_uniqueitems_validation_request_body**](docs/PathPostApi.md#post_uniqueitems_validation_request_body) | **POST** /requestBody/postUniqueitemsValidationRequestBody |
*PathPostApi* | [**post_uniqueitems_validation_response_body_for_content_types**](docs/PathPostApi.md#post_uniqueitems_validation_response_body_for_content_types) | **POST** /responseBody/postUniqueitemsValidationResponseBodyForContentTypes |
*PathPostApi* | [**post_uri_format_request_body**](docs/PathPostApi.md#post_uri_format_request_body) | **POST** /requestBody/postUriFormatRequestBody |
*PathPostApi* | [**post_uri_format_response_body_for_content_types**](docs/PathPostApi.md#post_uri_format_response_body_for_content_types) | **POST** /responseBody/postUriFormatResponseBodyForContentTypes |
*PathPostApi* | [**post_uri_reference_format_request_body**](docs/PathPostApi.md#post_uri_reference_format_request_body) | **POST** /requestBody/postUriReferenceFormatRequestBody |
*PathPostApi* | [**post_uri_reference_format_response_body_for_content_types**](docs/PathPostApi.md#post_uri_reference_format_response_body_for_content_types) | **POST** /responseBody/postUriReferenceFormatResponseBodyForContentTypes |
*PathPostApi* | [**post_uri_template_format_request_body**](docs/PathPostApi.md#post_uri_template_format_request_body) | **POST** /requestBody/postUriTemplateFormatRequestBody |
*PathPostApi* | [**post_uri_template_format_response_body_for_content_types**](docs/PathPostApi.md#post_uri_template_format_response_body_for_content_types) | **POST** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_additionalproperties_are_allowed_by_default_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_additionalproperties_are_allowed_by_default_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_additionalproperties_can_exist_by_itself_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_additionalproperties_can_exist_by_itself_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types) | **POST** /responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_combined_with_anyof_oneof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_combined_with_anyof_oneof_response_body_for_content_types) | **POST** /responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_response_body_for_content_types) | **POST** /responseBody/postAllofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_simple_types_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_simple_types_response_body_for_content_types) | **POST** /responseBody/postAllofSimpleTypesResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_with_base_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_with_one_empty_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_with_one_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_with_the_first_empty_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_with_the_first_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_with_the_last_empty_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_with_the_last_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_allof_with_two_empty_schemas_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_allof_with_two_empty_schemas_response_body_for_content_types) | **POST** /responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_anyof_complex_types_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_anyof_complex_types_response_body_for_content_types) | **POST** /responseBody/postAnyofComplexTypesResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_anyof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_anyof_response_body_for_content_types) | **POST** /responseBody/postAnyofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_anyof_with_base_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_anyof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_anyof_with_one_empty_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_anyof_with_one_empty_schema_response_body_for_content_types) | **POST** /responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_array_type_matches_arrays_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_array_type_matches_arrays_response_body_for_content_types) | **POST** /responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_boolean_type_matches_booleans_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_boolean_type_matches_booleans_response_body_for_content_types) | **POST** /responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_by_int_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_by_int_response_body_for_content_types) | **POST** /responseBody/postByIntResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_by_number_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_by_number_response_body_for_content_types) | **POST** /responseBody/postByNumberResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_by_small_number_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_by_small_number_response_body_for_content_types) | **POST** /responseBody/postBySmallNumberResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_date_time_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_date_time_format_response_body_for_content_types) | **POST** /responseBody/postDateTimeFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_email_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_email_format_response_body_for_content_types) | **POST** /responseBody/postEmailFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_enum_with0_does_not_match_false_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_enum_with0_does_not_match_false_response_body_for_content_types) | **POST** /responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_enum_with1_does_not_match_true_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_enum_with1_does_not_match_true_response_body_for_content_types) | **POST** /responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_enum_with_escaped_characters_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_enum_with_escaped_characters_response_body_for_content_types) | **POST** /responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_enum_with_false_does_not_match0_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_enum_with_false_does_not_match0_response_body_for_content_types) | **POST** /responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_enum_with_true_does_not_match1_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_enum_with_true_does_not_match1_response_body_for_content_types) | **POST** /responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_enums_in_properties_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_enums_in_properties_response_body_for_content_types) | **POST** /responseBody/postEnumsInPropertiesResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_forbidden_property_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_forbidden_property_response_body_for_content_types) | **POST** /responseBody/postForbiddenPropertyResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_hostname_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_hostname_format_response_body_for_content_types) | **POST** /responseBody/postHostnameFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_integer_type_matches_integers_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_integer_type_matches_integers_response_body_for_content_types) | **POST** /responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types) | **POST** /responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_invalid_string_value_for_default_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_invalid_string_value_for_default_response_body_for_content_types) | **POST** /responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ipv4_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ipv4_format_response_body_for_content_types) | **POST** /responseBody/postIpv4FormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ipv6_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ipv6_format_response_body_for_content_types) | **POST** /responseBody/postIpv6FormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_json_pointer_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_json_pointer_format_response_body_for_content_types) | **POST** /responseBody/postJsonPointerFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_maximum_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_maximum_validation_response_body_for_content_types) | **POST** /responseBody/postMaximumValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_maximum_validation_with_unsigned_integer_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_maximum_validation_with_unsigned_integer_response_body_for_content_types) | **POST** /responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_maxitems_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_maxitems_validation_response_body_for_content_types) | **POST** /responseBody/postMaxitemsValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_maxlength_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_maxlength_validation_response_body_for_content_types) | **POST** /responseBody/postMaxlengthValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_maxproperties0_means_the_object_is_empty_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_maxproperties0_means_the_object_is_empty_response_body_for_content_types) | **POST** /responseBody/postMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_maxproperties_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_maxproperties_validation_response_body_for_content_types) | **POST** /responseBody/postMaxpropertiesValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_minimum_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_minimum_validation_response_body_for_content_types) | **POST** /responseBody/postMinimumValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_minimum_validation_with_signed_integer_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_minimum_validation_with_signed_integer_response_body_for_content_types) | **POST** /responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_minitems_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_minitems_validation_response_body_for_content_types) | **POST** /responseBody/postMinitemsValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_minlength_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_minlength_validation_response_body_for_content_types) | **POST** /responseBody/postMinlengthValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_minproperties_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_minproperties_validation_response_body_for_content_types) | **POST** /responseBody/postMinpropertiesValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_nested_allof_to_check_validation_semantics_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_nested_allof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_nested_anyof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_nested_items_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_nested_items_response_body_for_content_types) | **POST** /responseBody/postNestedItemsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_nested_oneof_to_check_validation_semantics_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_nested_oneof_to_check_validation_semantics_response_body_for_content_types) | **POST** /responseBody/postNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_not_more_complex_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_not_more_complex_schema_response_body_for_content_types) | **POST** /responseBody/postNotMoreComplexSchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_not_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_not_response_body_for_content_types) | **POST** /responseBody/postNotResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_nul_characters_in_strings_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_nul_characters_in_strings_response_body_for_content_types) | **POST** /responseBody/postNulCharactersInStringsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_null_type_matches_only_the_null_object_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_null_type_matches_only_the_null_object_response_body_for_content_types) | **POST** /responseBody/postNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_number_type_matches_numbers_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_number_type_matches_numbers_response_body_for_content_types) | **POST** /responseBody/postNumberTypeMatchesNumbersResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_object_properties_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_object_properties_validation_response_body_for_content_types) | **POST** /responseBody/postObjectPropertiesValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_object_type_matches_objects_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_object_type_matches_objects_response_body_for_content_types) | **POST** /responseBody/postObjectTypeMatchesObjectsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_oneof_complex_types_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_oneof_complex_types_response_body_for_content_types) | **POST** /responseBody/postOneofComplexTypesResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_oneof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_oneof_response_body_for_content_types) | **POST** /responseBody/postOneofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_oneof_with_base_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_oneof_with_base_schema_response_body_for_content_types) | **POST** /responseBody/postOneofWithBaseSchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_oneof_with_empty_schema_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_oneof_with_empty_schema_response_body_for_content_types) | **POST** /responseBody/postOneofWithEmptySchemaResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_pattern_is_not_anchored_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_pattern_is_not_anchored_response_body_for_content_types) | **POST** /responseBody/postPatternIsNotAnchoredResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_pattern_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_pattern_validation_response_body_for_content_types) | **POST** /responseBody/postPatternValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_properties_with_escaped_characters_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_properties_with_escaped_characters_response_body_for_content_types) | **POST** /responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_property_named_ref_that_is_not_a_reference_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_property_named_ref_that_is_not_a_reference_response_body_for_content_types) | **POST** /responseBody/postPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ref_in_additionalproperties_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ref_in_additionalproperties_response_body_for_content_types) | **POST** /responseBody/postRefInAdditionalpropertiesResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ref_in_allof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ref_in_allof_response_body_for_content_types) | **POST** /responseBody/postRefInAllofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ref_in_anyof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ref_in_anyof_response_body_for_content_types) | **POST** /responseBody/postRefInAnyofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ref_in_items_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ref_in_items_response_body_for_content_types) | **POST** /responseBody/postRefInItemsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ref_in_oneof_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ref_in_oneof_response_body_for_content_types) | **POST** /responseBody/postRefInOneofResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_ref_in_property_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_ref_in_property_response_body_for_content_types) | **POST** /responseBody/postRefInPropertyResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_required_default_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_required_default_validation_response_body_for_content_types) | **POST** /responseBody/postRequiredDefaultValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_required_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_required_validation_response_body_for_content_types) | **POST** /responseBody/postRequiredValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_required_with_empty_array_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_required_with_empty_array_response_body_for_content_types) | **POST** /responseBody/postRequiredWithEmptyArrayResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_simple_enum_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_simple_enum_validation_response_body_for_content_types) | **POST** /responseBody/postSimpleEnumValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_string_type_matches_strings_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_string_type_matches_strings_response_body_for_content_types) | **POST** /responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types) | **POST** /responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_uniqueitems_false_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_uniqueitems_false_validation_response_body_for_content_types) | **POST** /responseBody/postUniqueitemsFalseValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_uniqueitems_validation_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_uniqueitems_validation_response_body_for_content_types) | **POST** /responseBody/postUniqueitemsValidationResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_uri_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_uri_format_response_body_for_content_types) | **POST** /responseBody/postUriFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_uri_reference_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_uri_reference_format_response_body_for_content_types) | **POST** /responseBody/postUriReferenceFormatResponseBodyForContentTypes |
*ResponseContentContentTypeSchemaApi* | [**post_uri_template_format_response_body_for_content_types**](docs/ResponseContentContentTypeSchemaApi.md#post_uri_template_format_response_body_for_content_types) | **POST** /responseBody/postUriTemplateFormatResponseBodyForContentTypes |
## Documentation For Models ## Documentation For Models
@ -496,6 +748,7 @@ Class | Method | HTTP request | Description
## Notes for Large OpenAPI documents ## Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in unit_test_api.apis and unit_test_api.models may fail with a If the OpenAPI document is large, imports in unit_test_api.apis and unit_test_api.models may fail with a
RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions: RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

File diff suppressed because it is too large Load Diff

View File

@ -16,8 +16,8 @@ class ApiTestMixin:
url: str, url: str,
method: str = 'POST', method: str = 'POST',
body: typing.Optional[bytes] = None, body: typing.Optional[bytes] = None,
content_type: typing.Optional[str] = 'application/json', content_type: typing.Optional[str] = None,
accept_content_type: typing.Optional[str] = 'application/json', accept_content_type: typing.Optional[str] = None,
stream: bool = False, stream: bool = False,
): ):
headers = { headers = {

View File

@ -33,6 +33,18 @@ class TestAdditionalpropertiesShouldNotLookInApplicators(unittest.TestCase):
_configuration=self._configuration _configuration=self._configuration
) )
def test_valid_test_case_passes(self):
# valid test case
AdditionalpropertiesShouldNotLookInApplicators._from_openapi_data(
{
"foo":
False,
"bar":
True,
},
_configuration=self._configuration
)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()

View File

@ -28,6 +28,13 @@ class TestInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf(unittest.TestCa
_configuration=self._configuration _configuration=self._configuration
) )
def test_valid_integer_with_multipleof_float_passes(self):
# valid integer with multipleOf float
InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf._from_openapi_data(
123456789,
_configuration=self._configuration
)
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()

View File

@ -1,3 +1,3 @@
# do not import all apis into this module because that uses a lot of memory and stack frames # do not import all apis into this module because that uses a lot of memory and stack frames
# if you need the ability to import all apis from one package, import them with # if you need the ability to import all apis from one package, import them with
# from unit_test_api.apis import JsonApi # from unit_test_api.apis import ContentTypeJsonApi

View File

@ -0,0 +1,359 @@
# coding: utf-8
"""
openapi 3.0.3 sample spec
sample spec for testing openapi functionality, built from json schema tests for draft6 # noqa: E501
The version of the OpenAPI document: 0.0.1
Generated by: https://openapi-generator.tech
"""
from unit_test_api.api_client import ApiClient
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_allows_a_schema_which_should_validate_request_body import PostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types import PostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_are_allowed_by_default_request_body import PostAdditionalpropertiesAreAllowedByDefaultRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_are_allowed_by_default_response_body_for_content_types import PostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_can_exist_by_itself_request_body import PostAdditionalpropertiesCanExistByItselfRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_can_exist_by_itself_response_body_for_content_types import PostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_should_not_look_in_applicators_request_body import PostAdditionalpropertiesShouldNotLookInApplicatorsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types import PostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_combined_with_anyof_oneof_request_body import PostAllofCombinedWithAnyofOneofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_combined_with_anyof_oneof_response_body_for_content_types import PostAllofCombinedWithAnyofOneofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_request_body import PostAllofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_response_body_for_content_types import PostAllofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_simple_types_request_body import PostAllofSimpleTypesRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_simple_types_response_body_for_content_types import PostAllofSimpleTypesResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_base_schema_request_body import PostAllofWithBaseSchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_base_schema_response_body_for_content_types import PostAllofWithBaseSchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_one_empty_schema_request_body import PostAllofWithOneEmptySchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_one_empty_schema_response_body_for_content_types import PostAllofWithOneEmptySchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_the_first_empty_schema_request_body import PostAllofWithTheFirstEmptySchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_the_first_empty_schema_response_body_for_content_types import PostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_the_last_empty_schema_request_body import PostAllofWithTheLastEmptySchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_the_last_empty_schema_response_body_for_content_types import PostAllofWithTheLastEmptySchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_two_empty_schemas_request_body import PostAllofWithTwoEmptySchemasRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_allof_with_two_empty_schemas_response_body_for_content_types import PostAllofWithTwoEmptySchemasResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_complex_types_request_body import PostAnyofComplexTypesRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_complex_types_response_body_for_content_types import PostAnyofComplexTypesResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_request_body import PostAnyofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_response_body_for_content_types import PostAnyofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_with_base_schema_request_body import PostAnyofWithBaseSchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_with_base_schema_response_body_for_content_types import PostAnyofWithBaseSchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_with_one_empty_schema_request_body import PostAnyofWithOneEmptySchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_anyof_with_one_empty_schema_response_body_for_content_types import PostAnyofWithOneEmptySchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_array_type_matches_arrays_request_body import PostArrayTypeMatchesArraysRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_array_type_matches_arrays_response_body_for_content_types import PostArrayTypeMatchesArraysResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_boolean_type_matches_booleans_request_body import PostBooleanTypeMatchesBooleansRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_boolean_type_matches_booleans_response_body_for_content_types import PostBooleanTypeMatchesBooleansResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_by_int_request_body import PostByIntRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_by_int_response_body_for_content_types import PostByIntResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_by_number_request_body import PostByNumberRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_by_number_response_body_for_content_types import PostByNumberResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_by_small_number_request_body import PostBySmallNumberRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_by_small_number_response_body_for_content_types import PostBySmallNumberResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_date_time_format_request_body import PostDateTimeFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_date_time_format_response_body_for_content_types import PostDateTimeFormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_email_format_request_body import PostEmailFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_email_format_response_body_for_content_types import PostEmailFormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with0_does_not_match_false_request_body import PostEnumWith0DoesNotMatchFalseRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with0_does_not_match_false_response_body_for_content_types import PostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with1_does_not_match_true_request_body import PostEnumWith1DoesNotMatchTrueRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with1_does_not_match_true_response_body_for_content_types import PostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with_escaped_characters_request_body import PostEnumWithEscapedCharactersRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with_escaped_characters_response_body_for_content_types import PostEnumWithEscapedCharactersResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with_false_does_not_match0_request_body import PostEnumWithFalseDoesNotMatch0RequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with_false_does_not_match0_response_body_for_content_types import PostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with_true_does_not_match1_request_body import PostEnumWithTrueDoesNotMatch1RequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_enum_with_true_does_not_match1_response_body_for_content_types import PostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_enums_in_properties_request_body import PostEnumsInPropertiesRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_enums_in_properties_response_body_for_content_types import PostEnumsInPropertiesResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_forbidden_property_request_body import PostForbiddenPropertyRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_forbidden_property_response_body_for_content_types import PostForbiddenPropertyResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_hostname_format_request_body import PostHostnameFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_hostname_format_response_body_for_content_types import PostHostnameFormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_integer_type_matches_integers_request_body import PostIntegerTypeMatchesIntegersRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_integer_type_matches_integers_response_body_for_content_types import PostIntegerTypeMatchesIntegersResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body import PostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types import PostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_invalid_string_value_for_default_request_body import PostInvalidStringValueForDefaultRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_invalid_string_value_for_default_response_body_for_content_types import PostInvalidStringValueForDefaultResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ipv4_format_request_body import PostIpv4FormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ipv4_format_response_body_for_content_types import PostIpv4FormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ipv6_format_request_body import PostIpv6FormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ipv6_format_response_body_for_content_types import PostIpv6FormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_json_pointer_format_request_body import PostJsonPointerFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_json_pointer_format_response_body_for_content_types import PostJsonPointerFormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_maximum_validation_request_body import PostMaximumValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_maximum_validation_response_body_for_content_types import PostMaximumValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_maximum_validation_with_unsigned_integer_request_body import PostMaximumValidationWithUnsignedIntegerRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_maximum_validation_with_unsigned_integer_response_body_for_content_types import PostMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_maxitems_validation_request_body import PostMaxitemsValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_maxitems_validation_response_body_for_content_types import PostMaxitemsValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_maxlength_validation_request_body import PostMaxlengthValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_maxlength_validation_response_body_for_content_types import PostMaxlengthValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_maxproperties0_means_the_object_is_empty_request_body import PostMaxproperties0MeansTheObjectIsEmptyRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_maxproperties0_means_the_object_is_empty_response_body_for_content_types import PostMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_maxproperties_validation_request_body import PostMaxpropertiesValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_maxproperties_validation_response_body_for_content_types import PostMaxpropertiesValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_minimum_validation_request_body import PostMinimumValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_minimum_validation_response_body_for_content_types import PostMinimumValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_minimum_validation_with_signed_integer_request_body import PostMinimumValidationWithSignedIntegerRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_minimum_validation_with_signed_integer_response_body_for_content_types import PostMinimumValidationWithSignedIntegerResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_minitems_validation_request_body import PostMinitemsValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_minitems_validation_response_body_for_content_types import PostMinitemsValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_minlength_validation_request_body import PostMinlengthValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_minlength_validation_response_body_for_content_types import PostMinlengthValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_minproperties_validation_request_body import PostMinpropertiesValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_minproperties_validation_response_body_for_content_types import PostMinpropertiesValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_nested_allof_to_check_validation_semantics_request_body import PostNestedAllofToCheckValidationSemanticsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_nested_allof_to_check_validation_semantics_response_body_for_content_types import PostNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_nested_anyof_to_check_validation_semantics_request_body import PostNestedAnyofToCheckValidationSemanticsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_nested_anyof_to_check_validation_semantics_response_body_for_content_types import PostNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_nested_items_request_body import PostNestedItemsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_nested_items_response_body_for_content_types import PostNestedItemsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_nested_oneof_to_check_validation_semantics_request_body import PostNestedOneofToCheckValidationSemanticsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_nested_oneof_to_check_validation_semantics_response_body_for_content_types import PostNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_not_more_complex_schema_request_body import PostNotMoreComplexSchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_not_more_complex_schema_response_body_for_content_types import PostNotMoreComplexSchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_not_request_body import PostNotRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_not_response_body_for_content_types import PostNotResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_nul_characters_in_strings_request_body import PostNulCharactersInStringsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_nul_characters_in_strings_response_body_for_content_types import PostNulCharactersInStringsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_null_type_matches_only_the_null_object_request_body import PostNullTypeMatchesOnlyTheNullObjectRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_null_type_matches_only_the_null_object_response_body_for_content_types import PostNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_number_type_matches_numbers_request_body import PostNumberTypeMatchesNumbersRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_number_type_matches_numbers_response_body_for_content_types import PostNumberTypeMatchesNumbersResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_object_properties_validation_request_body import PostObjectPropertiesValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_object_properties_validation_response_body_for_content_types import PostObjectPropertiesValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_object_type_matches_objects_request_body import PostObjectTypeMatchesObjectsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_object_type_matches_objects_response_body_for_content_types import PostObjectTypeMatchesObjectsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_complex_types_request_body import PostOneofComplexTypesRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_complex_types_response_body_for_content_types import PostOneofComplexTypesResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_request_body import PostOneofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_response_body_for_content_types import PostOneofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_with_base_schema_request_body import PostOneofWithBaseSchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_with_base_schema_response_body_for_content_types import PostOneofWithBaseSchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_with_empty_schema_request_body import PostOneofWithEmptySchemaRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_oneof_with_empty_schema_response_body_for_content_types import PostOneofWithEmptySchemaResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_pattern_is_not_anchored_request_body import PostPatternIsNotAnchoredRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_pattern_is_not_anchored_response_body_for_content_types import PostPatternIsNotAnchoredResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_pattern_validation_request_body import PostPatternValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_pattern_validation_response_body_for_content_types import PostPatternValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_properties_with_escaped_characters_request_body import PostPropertiesWithEscapedCharactersRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_properties_with_escaped_characters_response_body_for_content_types import PostPropertiesWithEscapedCharactersResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_property_named_ref_that_is_not_a_reference_request_body import PostPropertyNamedRefThatIsNotAReferenceRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_property_named_ref_that_is_not_a_reference_response_body_for_content_types import PostPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_additionalproperties_request_body import PostRefInAdditionalpropertiesRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_additionalproperties_response_body_for_content_types import PostRefInAdditionalpropertiesResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_allof_request_body import PostRefInAllofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_allof_response_body_for_content_types import PostRefInAllofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_anyof_request_body import PostRefInAnyofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_anyof_response_body_for_content_types import PostRefInAnyofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_items_request_body import PostRefInItemsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_items_response_body_for_content_types import PostRefInItemsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_oneof_request_body import PostRefInOneofRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_oneof_response_body_for_content_types import PostRefInOneofResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_property_request_body import PostRefInPropertyRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_ref_in_property_response_body_for_content_types import PostRefInPropertyResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_required_default_validation_request_body import PostRequiredDefaultValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_required_default_validation_response_body_for_content_types import PostRequiredDefaultValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_required_validation_request_body import PostRequiredValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_required_validation_response_body_for_content_types import PostRequiredValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_required_with_empty_array_request_body import PostRequiredWithEmptyArrayRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_required_with_empty_array_response_body_for_content_types import PostRequiredWithEmptyArrayResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_simple_enum_validation_request_body import PostSimpleEnumValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_simple_enum_validation_response_body_for_content_types import PostSimpleEnumValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_string_type_matches_strings_request_body import PostStringTypeMatchesStringsRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_string_type_matches_strings_response_body_for_content_types import PostStringTypeMatchesStringsResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body import PostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types import PostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_uniqueitems_false_validation_request_body import PostUniqueitemsFalseValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_uniqueitems_false_validation_response_body_for_content_types import PostUniqueitemsFalseValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_uniqueitems_validation_request_body import PostUniqueitemsValidationRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_uniqueitems_validation_response_body_for_content_types import PostUniqueitemsValidationResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_uri_format_request_body import PostUriFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_uri_format_response_body_for_content_types import PostUriFormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_uri_reference_format_request_body import PostUriReferenceFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_uri_reference_format_response_body_for_content_types import PostUriReferenceFormatResponseBodyForContentTypes
from unit_test_api.api.content_type_json_api_endpoints.post_uri_template_format_request_body import PostUriTemplateFormatRequestBody
from unit_test_api.api.content_type_json_api_endpoints.post_uri_template_format_response_body_for_content_types import PostUriTemplateFormatResponseBodyForContentTypes
class ContentTypeJsonApi(
PostAdditionalpropertiesAllowsASchemaWhichShouldValidateRequestBody,
PostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes,
PostAdditionalpropertiesAreAllowedByDefaultRequestBody,
PostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes,
PostAdditionalpropertiesCanExistByItselfRequestBody,
PostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes,
PostAdditionalpropertiesShouldNotLookInApplicatorsRequestBody,
PostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes,
PostAllofCombinedWithAnyofOneofRequestBody,
PostAllofCombinedWithAnyofOneofResponseBodyForContentTypes,
PostAllofRequestBody,
PostAllofResponseBodyForContentTypes,
PostAllofSimpleTypesRequestBody,
PostAllofSimpleTypesResponseBodyForContentTypes,
PostAllofWithBaseSchemaRequestBody,
PostAllofWithBaseSchemaResponseBodyForContentTypes,
PostAllofWithOneEmptySchemaRequestBody,
PostAllofWithOneEmptySchemaResponseBodyForContentTypes,
PostAllofWithTheFirstEmptySchemaRequestBody,
PostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes,
PostAllofWithTheLastEmptySchemaRequestBody,
PostAllofWithTheLastEmptySchemaResponseBodyForContentTypes,
PostAllofWithTwoEmptySchemasRequestBody,
PostAllofWithTwoEmptySchemasResponseBodyForContentTypes,
PostAnyofComplexTypesRequestBody,
PostAnyofComplexTypesResponseBodyForContentTypes,
PostAnyofRequestBody,
PostAnyofResponseBodyForContentTypes,
PostAnyofWithBaseSchemaRequestBody,
PostAnyofWithBaseSchemaResponseBodyForContentTypes,
PostAnyofWithOneEmptySchemaRequestBody,
PostAnyofWithOneEmptySchemaResponseBodyForContentTypes,
PostArrayTypeMatchesArraysRequestBody,
PostArrayTypeMatchesArraysResponseBodyForContentTypes,
PostBooleanTypeMatchesBooleansRequestBody,
PostBooleanTypeMatchesBooleansResponseBodyForContentTypes,
PostByIntRequestBody,
PostByIntResponseBodyForContentTypes,
PostByNumberRequestBody,
PostByNumberResponseBodyForContentTypes,
PostBySmallNumberRequestBody,
PostBySmallNumberResponseBodyForContentTypes,
PostDateTimeFormatRequestBody,
PostDateTimeFormatResponseBodyForContentTypes,
PostEmailFormatRequestBody,
PostEmailFormatResponseBodyForContentTypes,
PostEnumWith0DoesNotMatchFalseRequestBody,
PostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes,
PostEnumWith1DoesNotMatchTrueRequestBody,
PostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes,
PostEnumWithEscapedCharactersRequestBody,
PostEnumWithEscapedCharactersResponseBodyForContentTypes,
PostEnumWithFalseDoesNotMatch0RequestBody,
PostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes,
PostEnumWithTrueDoesNotMatch1RequestBody,
PostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes,
PostEnumsInPropertiesRequestBody,
PostEnumsInPropertiesResponseBodyForContentTypes,
PostForbiddenPropertyRequestBody,
PostForbiddenPropertyResponseBodyForContentTypes,
PostHostnameFormatRequestBody,
PostHostnameFormatResponseBodyForContentTypes,
PostIntegerTypeMatchesIntegersRequestBody,
PostIntegerTypeMatchesIntegersResponseBodyForContentTypes,
PostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody,
PostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes,
PostInvalidStringValueForDefaultRequestBody,
PostInvalidStringValueForDefaultResponseBodyForContentTypes,
PostIpv4FormatRequestBody,
PostIpv4FormatResponseBodyForContentTypes,
PostIpv6FormatRequestBody,
PostIpv6FormatResponseBodyForContentTypes,
PostJsonPointerFormatRequestBody,
PostJsonPointerFormatResponseBodyForContentTypes,
PostMaximumValidationRequestBody,
PostMaximumValidationResponseBodyForContentTypes,
PostMaximumValidationWithUnsignedIntegerRequestBody,
PostMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes,
PostMaxitemsValidationRequestBody,
PostMaxitemsValidationResponseBodyForContentTypes,
PostMaxlengthValidationRequestBody,
PostMaxlengthValidationResponseBodyForContentTypes,
PostMaxproperties0MeansTheObjectIsEmptyRequestBody,
PostMaxproperties0MeansTheObjectIsEmptyResponseBodyForContentTypes,
PostMaxpropertiesValidationRequestBody,
PostMaxpropertiesValidationResponseBodyForContentTypes,
PostMinimumValidationRequestBody,
PostMinimumValidationResponseBodyForContentTypes,
PostMinimumValidationWithSignedIntegerRequestBody,
PostMinimumValidationWithSignedIntegerResponseBodyForContentTypes,
PostMinitemsValidationRequestBody,
PostMinitemsValidationResponseBodyForContentTypes,
PostMinlengthValidationRequestBody,
PostMinlengthValidationResponseBodyForContentTypes,
PostMinpropertiesValidationRequestBody,
PostMinpropertiesValidationResponseBodyForContentTypes,
PostNestedAllofToCheckValidationSemanticsRequestBody,
PostNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes,
PostNestedAnyofToCheckValidationSemanticsRequestBody,
PostNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes,
PostNestedItemsRequestBody,
PostNestedItemsResponseBodyForContentTypes,
PostNestedOneofToCheckValidationSemanticsRequestBody,
PostNestedOneofToCheckValidationSemanticsResponseBodyForContentTypes,
PostNotMoreComplexSchemaRequestBody,
PostNotMoreComplexSchemaResponseBodyForContentTypes,
PostNotRequestBody,
PostNotResponseBodyForContentTypes,
PostNulCharactersInStringsRequestBody,
PostNulCharactersInStringsResponseBodyForContentTypes,
PostNullTypeMatchesOnlyTheNullObjectRequestBody,
PostNullTypeMatchesOnlyTheNullObjectResponseBodyForContentTypes,
PostNumberTypeMatchesNumbersRequestBody,
PostNumberTypeMatchesNumbersResponseBodyForContentTypes,
PostObjectPropertiesValidationRequestBody,
PostObjectPropertiesValidationResponseBodyForContentTypes,
PostObjectTypeMatchesObjectsRequestBody,
PostObjectTypeMatchesObjectsResponseBodyForContentTypes,
PostOneofComplexTypesRequestBody,
PostOneofComplexTypesResponseBodyForContentTypes,
PostOneofRequestBody,
PostOneofResponseBodyForContentTypes,
PostOneofWithBaseSchemaRequestBody,
PostOneofWithBaseSchemaResponseBodyForContentTypes,
PostOneofWithEmptySchemaRequestBody,
PostOneofWithEmptySchemaResponseBodyForContentTypes,
PostPatternIsNotAnchoredRequestBody,
PostPatternIsNotAnchoredResponseBodyForContentTypes,
PostPatternValidationRequestBody,
PostPatternValidationResponseBodyForContentTypes,
PostPropertiesWithEscapedCharactersRequestBody,
PostPropertiesWithEscapedCharactersResponseBodyForContentTypes,
PostPropertyNamedRefThatIsNotAReferenceRequestBody,
PostPropertyNamedRefThatIsNotAReferenceResponseBodyForContentTypes,
PostRefInAdditionalpropertiesRequestBody,
PostRefInAdditionalpropertiesResponseBodyForContentTypes,
PostRefInAllofRequestBody,
PostRefInAllofResponseBodyForContentTypes,
PostRefInAnyofRequestBody,
PostRefInAnyofResponseBodyForContentTypes,
PostRefInItemsRequestBody,
PostRefInItemsResponseBodyForContentTypes,
PostRefInOneofRequestBody,
PostRefInOneofResponseBodyForContentTypes,
PostRefInPropertyRequestBody,
PostRefInPropertyResponseBodyForContentTypes,
PostRequiredDefaultValidationRequestBody,
PostRequiredDefaultValidationResponseBodyForContentTypes,
PostRequiredValidationRequestBody,
PostRequiredValidationResponseBodyForContentTypes,
PostRequiredWithEmptyArrayRequestBody,
PostRequiredWithEmptyArrayResponseBodyForContentTypes,
PostSimpleEnumValidationRequestBody,
PostSimpleEnumValidationResponseBodyForContentTypes,
PostStringTypeMatchesStringsRequestBody,
PostStringTypeMatchesStringsResponseBodyForContentTypes,
PostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody,
PostTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes,
PostUniqueitemsFalseValidationRequestBody,
PostUniqueitemsFalseValidationResponseBodyForContentTypes,
PostUniqueitemsValidationRequestBody,
PostUniqueitemsValidationResponseBodyForContentTypes,
PostUriFormatRequestBody,
PostUriFormatResponseBodyForContentTypes,
PostUriReferenceFormatRequestBody,
PostUriReferenceFormatResponseBodyForContentTypes,
PostUriTemplateFormatRequestBody,
PostUriTemplateFormatResponseBodyForContentTypes,
ApiClient,
):
"""NOTE: This class is auto generated by OpenAPI Generator
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
pass

View File

@ -1,3 +1,3 @@
# do not import all endpoints into this module because that uses a lot of memory and stack frames # do not import all endpoints into this module because that uses a lot of memory and stack frames
# if you need the ability to import all endpoints from this module, import them with # if you need the ability to import all endpoints from this module, import them with
# from unit_test_api.api.post_api import PostApi # from unit_test_api.api.content_type_json_api import ContentTypeJsonApi

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.additionalproperties_allows_a_schema_which_should_validate import AdditionalpropertiesAllowsASchemaWhichShouldValidate
_path = '/responseBody/postAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AdditionalpropertiesAllowsASchemaWhichShouldValidate
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAdditionalpropertiesAllowsASchemaWhichShouldValidateResponseBodyForContentTypes(api_client.Api):
def post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.additionalproperties_are_allowed_by_default import AdditionalpropertiesAreAllowedByDefault
_path = '/responseBody/postAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AdditionalpropertiesAreAllowedByDefault
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAdditionalpropertiesAreAllowedByDefaultResponseBodyForContentTypes(api_client.Api):
def post_additionalproperties_are_allowed_by_default_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.additionalproperties_can_exist_by_itself import AdditionalpropertiesCanExistByItself
_path = '/responseBody/postAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AdditionalpropertiesCanExistByItself
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAdditionalpropertiesCanExistByItselfResponseBodyForContentTypes(api_client.Api):
def post_additionalproperties_can_exist_by_itself_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.additionalproperties_should_not_look_in_applicators import AdditionalpropertiesShouldNotLookInApplicators
_path = '/responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AdditionalpropertiesShouldNotLookInApplicators
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes(api_client.Api):
def post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_combined_with_anyof_oneof import AllofCombinedWithAnyofOneof
_path = '/responseBody/postAllofCombinedWithAnyofOneofResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofCombinedWithAnyofOneof
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofCombinedWithAnyofOneofResponseBodyForContentTypes(api_client.Api):
def post_allof_combined_with_anyof_oneof_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof import Allof
_path = '/responseBody/postAllofResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = Allof
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofResponseBodyForContentTypes(api_client.Api):
def post_allof_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_simple_types import AllofSimpleTypes
_path = '/responseBody/postAllofSimpleTypesResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofSimpleTypes
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofSimpleTypesResponseBodyForContentTypes(api_client.Api):
def post_allof_simple_types_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_with_base_schema import AllofWithBaseSchema
_path = '/responseBody/postAllofWithBaseSchemaResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofWithBaseSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofWithBaseSchemaResponseBodyForContentTypes(api_client.Api):
def post_allof_with_base_schema_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_with_one_empty_schema import AllofWithOneEmptySchema
_path = '/responseBody/postAllofWithOneEmptySchemaResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofWithOneEmptySchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofWithOneEmptySchemaResponseBodyForContentTypes(api_client.Api):
def post_allof_with_one_empty_schema_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_with_the_first_empty_schema import AllofWithTheFirstEmptySchema
_path = '/responseBody/postAllofWithTheFirstEmptySchemaResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofWithTheFirstEmptySchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofWithTheFirstEmptySchemaResponseBodyForContentTypes(api_client.Api):
def post_allof_with_the_first_empty_schema_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_with_the_last_empty_schema import AllofWithTheLastEmptySchema
_path = '/responseBody/postAllofWithTheLastEmptySchemaResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofWithTheLastEmptySchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofWithTheLastEmptySchemaResponseBodyForContentTypes(api_client.Api):
def post_allof_with_the_last_empty_schema_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.allof_with_two_empty_schemas import AllofWithTwoEmptySchemas
_path = '/responseBody/postAllofWithTwoEmptySchemasResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AllofWithTwoEmptySchemas
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAllofWithTwoEmptySchemasResponseBodyForContentTypes(api_client.Api):
def post_allof_with_two_empty_schemas_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.anyof_complex_types import AnyofComplexTypes
_path = '/responseBody/postAnyofComplexTypesResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyofComplexTypes
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAnyofComplexTypesResponseBodyForContentTypes(api_client.Api):
def post_anyof_complex_types_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.anyof import Anyof
_path = '/responseBody/postAnyofResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = Anyof
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAnyofResponseBodyForContentTypes(api_client.Api):
def post_anyof_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.anyof_with_base_schema import AnyofWithBaseSchema
_path = '/responseBody/postAnyofWithBaseSchemaResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyofWithBaseSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAnyofWithBaseSchemaResponseBodyForContentTypes(api_client.Api):
def post_anyof_with_base_schema_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.anyof_with_one_empty_schema import AnyofWithOneEmptySchema
_path = '/responseBody/postAnyofWithOneEmptySchemaResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyofWithOneEmptySchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostAnyofWithOneEmptySchemaResponseBodyForContentTypes(api_client.Api):
def post_anyof_with_one_empty_schema_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.array_type_matches_arrays import ArrayTypeMatchesArrays
_path = '/responseBody/postArrayTypeMatchesArraysResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = ArrayTypeMatchesArrays
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostArrayTypeMatchesArraysResponseBodyForContentTypes(api_client.Api):
def post_array_type_matches_arrays_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postBooleanTypeMatchesBooleansResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = BoolSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostBooleanTypeMatchesBooleansResponseBodyForContentTypes(api_client.Api):
def post_boolean_type_matches_booleans_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.by_int import ByInt
_path = '/responseBody/postByIntResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = ByInt
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostByIntResponseBodyForContentTypes(api_client.Api):
def post_by_int_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.by_number import ByNumber
_path = '/responseBody/postByNumberResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = ByNumber
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostByNumberResponseBodyForContentTypes(api_client.Api):
def post_by_number_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.by_small_number import BySmallNumber
_path = '/responseBody/postBySmallNumberResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = BySmallNumber
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostBySmallNumberResponseBodyForContentTypes(api_client.Api):
def post_by_small_number_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postDateTimeFormatResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyTypeSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostDateTimeFormatResponseBodyForContentTypes(api_client.Api):
def post_date_time_format_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postEmailFormatResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyTypeSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEmailFormatResponseBodyForContentTypes(api_client.Api):
def post_email_format_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.enum_with0_does_not_match_false import EnumWith0DoesNotMatchFalse
_path = '/responseBody/postEnumWith0DoesNotMatchFalseResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = EnumWith0DoesNotMatchFalse
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEnumWith0DoesNotMatchFalseResponseBodyForContentTypes(api_client.Api):
def post_enum_with0_does_not_match_false_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.enum_with1_does_not_match_true import EnumWith1DoesNotMatchTrue
_path = '/responseBody/postEnumWith1DoesNotMatchTrueResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = EnumWith1DoesNotMatchTrue
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEnumWith1DoesNotMatchTrueResponseBodyForContentTypes(api_client.Api):
def post_enum_with1_does_not_match_true_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.enum_with_escaped_characters import EnumWithEscapedCharacters
_path = '/responseBody/postEnumWithEscapedCharactersResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = EnumWithEscapedCharacters
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEnumWithEscapedCharactersResponseBodyForContentTypes(api_client.Api):
def post_enum_with_escaped_characters_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.enum_with_false_does_not_match0 import EnumWithFalseDoesNotMatch0
_path = '/responseBody/postEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = EnumWithFalseDoesNotMatch0
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEnumWithFalseDoesNotMatch0ResponseBodyForContentTypes(api_client.Api):
def post_enum_with_false_does_not_match0_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.enum_with_true_does_not_match1 import EnumWithTrueDoesNotMatch1
_path = '/responseBody/postEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = EnumWithTrueDoesNotMatch1
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEnumWithTrueDoesNotMatch1ResponseBodyForContentTypes(api_client.Api):
def post_enum_with_true_does_not_match1_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.enums_in_properties import EnumsInProperties
_path = '/responseBody/postEnumsInPropertiesResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = EnumsInProperties
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostEnumsInPropertiesResponseBodyForContentTypes(api_client.Api):
def post_enums_in_properties_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.forbidden_property import ForbiddenProperty
_path = '/responseBody/postForbiddenPropertyResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = ForbiddenProperty
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostForbiddenPropertyResponseBodyForContentTypes(api_client.Api):
def post_forbidden_property_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postHostnameFormatResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyTypeSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostHostnameFormatResponseBodyForContentTypes(api_client.Api):
def post_hostname_format_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postIntegerTypeMatchesIntegersResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = IntSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostIntegerTypeMatchesIntegersResponseBodyForContentTypes(api_client.Api):
def post_integer_type_matches_integers_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.invalid_instance_should_not_raise_error_when_float_division_inf import InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf
_path = '/responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes(api_client.Api):
def post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,145 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
from unit_test_api.model.invalid_string_value_for_default import InvalidStringValueForDefault
_path = '/responseBody/postInvalidStringValueForDefaultResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = InvalidStringValueForDefault
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostInvalidStringValueForDefaultResponseBodyForContentTypes(api_client.Api):
def post_invalid_string_value_for_default_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postIpv4FormatResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyTypeSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostIpv4FormatResponseBodyForContentTypes(api_client.Api):
def post_ipv4_format_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

View File

@ -0,0 +1,143 @@
# coding: utf-8
"""
Generated by: https://openapi-generator.tech
"""
from dataclasses import dataclass
import re # noqa: F401
import sys # noqa: F401
import typing
import urllib3
import functools # noqa: F401
from urllib3._collections import HTTPHeaderDict
from unit_test_api import api_client, exceptions
import decimal # noqa: F401
from datetime import date, datetime # noqa: F401
from frozendict import frozendict # noqa: F401
from unit_test_api.schemas import ( # noqa: F401
AnyTypeSchema,
ComposedSchema,
DictSchema,
ListSchema,
StrSchema,
IntSchema,
Int32Schema,
Int64Schema,
Float32Schema,
Float64Schema,
NumberSchema,
UUIDSchema,
DateSchema,
DateTimeSchema,
DecimalSchema,
BoolSchema,
BinarySchema,
NoneSchema,
none_type,
Configuration,
Unset,
unset,
ComposedBase,
ListBase,
DictBase,
NoneBase,
StrBase,
IntBase,
Int32Base,
Int64Base,
Float32Base,
Float64Base,
NumberBase,
UUIDBase,
DateBase,
DateTimeBase,
BoolBase,
BinaryBase,
Schema,
NoneClass,
BoolClass,
_SchemaValidator,
_SchemaTypeChecker,
_SchemaEnumMaker
)
_path = '/responseBody/postIpv6FormatResponseBodyForContentTypes'
_method = 'POST'
SchemaFor200ResponseBodyApplicationJson = AnyTypeSchema
@dataclass
class ApiResponseFor200(api_client.ApiResponse):
response: urllib3.HTTPResponse
body: typing.Union[
SchemaFor200ResponseBodyApplicationJson,
]
headers: Unset = unset
_response_for_200 = api_client.OpenApiResponse(
response_cls=ApiResponseFor200,
content={
'application/json': api_client.MediaType(
schema=SchemaFor200ResponseBodyApplicationJson),
},
)
_status_code_to_response = {
'200': _response_for_200,
}
_all_accept_content_types = (
'application/json',
)
class PostIpv6FormatResponseBodyForContentTypes(api_client.Api):
def post_ipv6_format_response_body_for_content_types(
self: api_client.Api,
accept_content_types: typing.Tuple[str] = _all_accept_content_types,
stream: bool = False,
timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None,
skip_deserialization: bool = False,
) -> typing.Union[
ApiResponseFor200,
api_client.ApiResponseWithoutDeserialization
]:
"""
:param skip_deserialization: If true then api_response.response will be set but
api_response.body and api_response.headers will not be deserialized into schema
class instances
"""
used_path = _path
_headers = HTTPHeaderDict()
# TODO add cookie handling
if accept_content_types:
for accept_content_type in accept_content_types:
_headers.add('Accept', accept_content_type)
response = self.api_client.call_api(
resource_path=used_path,
method=_method,
headers=_headers,
stream=stream,
timeout=timeout,
)
if skip_deserialization:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
else:
response_for_status = _status_code_to_response.get(str(response.status))
if response_for_status:
api_response = response_for_status.deserialize(response, self.api_client.configuration)
else:
api_response = api_client.ApiResponseWithoutDeserialization(response=response)
if not 200 <= response.status <= 299:
raise exceptions.ApiException(api_response=api_response)
return api_response

Some files were not shown because too many files have changed in this diff Show More