Skip to content

Add support ULID type #2819

@ahmetveburak

Description

@ahmetveburak

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
          }
        }
      }
    }
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions