WorkOS · Schema

CorsOriginResponse

AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Properties

Name Type Description
object string Distinguishes the CORS origin object.
id string Unique identifier of the CORS origin.
origin string The origin URL.
created_at string Timestamp when the CORS origin was created.
updated_at string Timestamp when the CORS origin was last updated.
View JSON Schema on GitHub

JSON Schema

workos-corsoriginresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CorsOriginResponse",
  "title": "CorsOriginResponse",
  "type": "object",
  "properties": {
    "object": {
      "type": "string",
      "description": "Distinguishes the CORS origin object.",
      "const": "cors_origin"
    },
    "id": {
      "type": "string",
      "description": "Unique identifier of the CORS origin.",
      "example": "cors_origin_01HXYZ123456789ABCDEFGHIJ"
    },
    "origin": {
      "type": "string",
      "description": "The origin URL.",
      "example": "https://example.com"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the CORS origin was created.",
      "example": "2026-01-15T12:00:00.000Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the CORS origin was last updated.",
      "example": "2026-01-15T12:00:00.000Z"
    }
  },
  "required": [
    "object",
    "id",
    "origin",
    "created_at",
    "updated_at"
  ]
}