Zitadel · Schema

Application

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

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

JSON Schema

zitadel-management-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zitadel/refs/heads/main/json-schema/zitadel-management-application-schema.json",
  "title": "Application",
  "type": "object",
  "properties": {
    "id": {"type": "string"},
    "name": {"type": "string"},
    "state": {"type": "string", "enum": ["APP_STATE_ACTIVE", "APP_STATE_INACTIVE", "APP_STATE_REMOVED"]},
    "appType": {"type": "string", "enum": ["OIDC", "SAML", "API"]},
    "details": {"$ref": "zitadel-management-object-details-schema.json"}
  },
  "required": ["id", "name"]
}