Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 465 Bytes

api.rst

File metadata and controls

23 lines (15 loc) · 465 Bytes

API Documentation

openapi_toolkit.OpenAPI

openapi_toolkit.JsonSchema

openapi_toolkit.schema_format

Decorator to add custom JSONSchema format checkers

e.g.

@schema_format.checks('uuid', ValueError)
def uuid_format(value):
    return uuid.UUID(value)

openapi_toolkit.MakoPreprocessor