{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateRedirectUriDto", "title": "CreateRedirectUriDto", "type": "object", "properties": { "uri": { "type": "string", "description": "The redirect URI to create.", "example": "https://example.com/callback" } }, "required": [ "uri" ] }