Zitadel · Schema

HumanUser

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
profile object
email object
phone object
passwordChangeRequired boolean
passwordChanged string
View JSON Schema on GitHub

JSON Schema

zitadel-humanuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HumanUser",
  "title": "HumanUser",
  "type": "object",
  "properties": {
    "profile": {
      "$ref": "#/components/schemas/HumanProfile"
    },
    "email": {
      "$ref": "#/components/schemas/HumanEmail"
    },
    "phone": {
      "$ref": "#/components/schemas/HumanPhone"
    },
    "passwordChangeRequired": {
      "type": "boolean"
    },
    "passwordChanged": {
      "type": "string",
      "format": "date-time"
    }
  }
}