WorkOS · Schema

RedirectUriDto

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
uri string The redirect URI.
default booleannull Whether this is the default redirect URI.
View JSON Schema on GitHub

JSON Schema

workos-redirecturidto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RedirectUriDto",
  "title": "RedirectUriDto",
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "description": "The redirect URI.",
      "example": "https://example.com/callback"
    },
    "default": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether this is the default redirect URI.",
      "example": true
    }
  },
  "required": [
    "uri"
  ]
}