Zitadel · Schema

Organization

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
id string
details object
state string
name string
primaryDomain string
View JSON Schema on GitHub

JSON Schema

zitadel-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Organization",
  "title": "Organization",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "details": {
      "$ref": "#/components/schemas/ObjectDetails"
    },
    "state": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "INACTIVE"
      ]
    },
    "name": {
      "type": "string"
    },
    "primaryDomain": {
      "type": "string"
    }
  }
}