mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-24 19:19:56 +00:00
28 lines
494 B
Python
28 lines
494 B
Python
"""OpenAPI core schemas enums module"""
|
|
from enum import Enum
|
|
|
|
|
|
class SchemaType(Enum):
|
|
|
|
ANY = None
|
|
INTEGER = 'integer'
|
|
NUMBER = 'number'
|
|
STRING = 'string'
|
|
BOOLEAN = 'boolean'
|
|
ARRAY = 'array'
|
|
OBJECT = 'object'
|
|
|
|
|
|
class SchemaFormat(Enum):
|
|
|
|
NONE = None
|
|
INT32 = 'int32'
|
|
INT64 = 'int64'
|
|
FLOAT = 'float'
|
|
DOUBLE = 'double'
|
|
BYTE = 'byte'
|
|
BINARY = 'binary'
|
|
DATE = 'date'
|
|
DATETIME = 'date-time'
|
|
PASSWORD = 'password'
|
|
UUID = 'uuid'
|