WorkOS · JSON Structure

Workos Organization Structure

Type: object Properties: 0
AuthenticationIdentity ProviderSSOSAMLOIDCSCIMDirectory SyncAuthorizationFGAAudit LogsMFAB2B SaaSAgentsMCP

Workos Organization Structure is a JSON Structure definition published by WorkOS. It conforms to the https://json-structure.org/draft/2025-09/schema meta-schema.

Meta-schema: https://json-structure.org/draft/2025-09/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2025-09/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workos/main/json-structure/workos-organization-structure.json",
  "title": "WorkOS Organization Structure",
  "type": "object",
  "fields": {
    "id": { "type": "string", "description": "WorkOS-issued ULID prefixed with org_." },
    "object": { "type": "string", "const": "organization" },
    "name": { "type": "string" },
    "domains": {
      "type": "array",
      "items": {
        "type": "object",
        "fields": {
          "id": { "type": "string" },
          "domain": { "type": "string" },
          "state": { "type": "string", "enum": ["pending","verified","failed","legacy_verified"] }
        }
      }
    },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" }
  }
}