Zitadel · Schema

Project

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
id string
state string
name string
projectRoleAssertion boolean
projectRoleCheck boolean
hasProjectCheck boolean
details object
View JSON Schema on GitHub

JSON Schema

zitadel-management-project-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-project-schema.json",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": {"type": "string"},
    "state": {"type": "string", "enum": ["PROJECT_STATE_ACTIVE", "PROJECT_STATE_INACTIVE", "PROJECT_STATE_REMOVED"]},
    "name": {"type": "string"},
    "projectRoleAssertion": {"type": "boolean"},
    "projectRoleCheck": {"type": "boolean"},
    "hasProjectCheck": {"type": "boolean"},
    "details": {"$ref": "zitadel-management-object-details-schema.json"}
  },
  "required": ["id", "name"]
}