Zitadel · Schema

Project

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

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

JSON Schema

zitadel-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "details": {
      "$ref": "#/components/schemas/ObjectDetails"
    },
    "name": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "ACTIVE",
        "INACTIVE"
      ]
    },
    "projectRoleAssertion": {
      "type": "boolean"
    },
    "projectRoleCheck": {
      "type": "boolean"
    },
    "hasProjectCheck": {
      "type": "boolean"
    },
    "privateLabelingSetting": {
      "type": "string"
    }
  }
}