Is your feature request related to a problem? Please describe.
My schema uses ULID for identifiers. I'd like to have python-ulid support.
Describe the solution you'd like
Support ULID types
Sample Schema:
{
"openapi": "3.0.1",
"components": {
"schemas": {
"ULID": {
"type": "string",
"format": "uuid",
"x-internalAPI": false
},
"MyModel": {
"type": "object",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "string",
"format": "ulid",
"deprecated": false,
"x-internalAPI": false
},
"name": {
"type": "string",
"deprecated": false
}
}
}
}
}
}
Is your feature request related to a problem? Please describe.
My schema uses ULID for identifiers. I'd like to have
python-ulidsupport.Describe the solution you'd like
Support ULID types
Sample Schema:
{ "openapi": "3.0.1", "components": { "schemas": { "ULID": { "type": "string", "format": "uuid", "x-internalAPI": false }, "MyModel": { "type": "object", "required": [ "id", "name" ], "properties": { "id": { "type": "string", "format": "ulid", "deprecated": false, "x-internalAPI": false }, "name": { "type": "string", "deprecated": false } } } } } }