Zitadel · Schema

HumanProfile

AuthenticationAuthorizationIdentity ManagementOpen SourceOAuth 2.0OIDC

Properties

Name Type Description
firstName string
lastName string
nickName string
displayName string
preferredLanguage string
gender string
avatarUrl string
View JSON Schema on GitHub

JSON Schema

zitadel-humanprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HumanProfile",
  "title": "HumanProfile",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "nickName": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "preferredLanguage": {
      "type": "string"
    },
    "gender": {
      "type": "string",
      "enum": [
        "UNSPECIFIED",
        "FEMALE",
        "MALE",
        "DIVERSE"
      ]
    },
    "avatarUrl": {
      "type": "string"
    }
  }
}