Skip to content

Latest commit

 

History

History
60 lines (50 loc) · 2.68 KB

File metadata and controls

60 lines (50 loc) · 2.68 KB

Cat

petstore_api.components.schema.cat

type: schemas.Schema

validate method

Input Type Return Type Notes
dict, schemas.immutabledict, str, datetime.date, datetime.datetime, uuid.UUID, int, float, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader schemas.immutabledict, str, float, int, bool, None, tuple, bytes, io.FileIO

Composed Schemas (allOf/anyOf/oneOf/not)

allOf

Schema Class Input Type Return Type
animal.Animal animal.AnimalDictInput, animal.AnimalDict animal.AnimalDict
_1 _1DictInput, _1Dict _1Dict

_1

type: schemas.Schema

validate method

Input Type Return Type Notes
_1DictInput, _1Dict _1Dict

_1DictInput

type: typing.Mapping[str, schemas.INPUT_TYPES_ALL]
Key Type Description Notes
declawed bool [optional]
any_string_name dict, schemas.immutabledict, list, tuple, decimal.Decimal, float, int, str, datetime.date, datetime.datetime, uuid.UUID, bool, None, bytes, io.FileIO, io.BufferedReader, schemas.FileIO any string name can be used but the value must be the correct type [optional]

_1Dict

base class: schemas.immutabledict[str, schemas.OUTPUT_BASE_TYPES]

__new__ method

Keyword Argument Type Description Notes
declawed bool, schemas.Unset [optional]
kwargs schemas.immutabledict, tuple, float, int, str, bool, None, bytes, schemas.FileIO any string name can be used but the value must be the correct type [optional] typed value is accessed with the get_additional_property_ method

properties

Property Type Description Notes
declawed bool, schemas.Unset [optional]

methods

Method Input Type Return Type Notes
from_dict_ _1DictInput, _1Dict _1Dict a constructor
get_additional_property_ str schemas.immutabledict, tuple, float, int, str, bool, None, bytes, schemas.FileIO, schemas.Unset provides type safety for additional properties

[Back to top] [Back to Component Schemas] [Back to README]