ForgeRock · Schema

UserInfo

OpenID Connect UserInfo claims

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
sub string Subject identifier
name string
given_name string
family_name string
email string
email_verified boolean
phone_number string
address object
View JSON Schema on GitHub

JSON Schema

forgerock-userinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserInfo",
  "title": "UserInfo",
  "type": "object",
  "description": "OpenID Connect UserInfo claims",
  "properties": {
    "sub": {
      "type": "string",
      "description": "Subject identifier"
    },
    "name": {
      "type": "string"
    },
    "given_name": {
      "type": "string"
    },
    "family_name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "email_verified": {
      "type": "boolean"
    },
    "phone_number": {
      "type": "string"
    },
    "address": {
      "type": "object",
      "properties": {
        "formatted": {
          "type": "string"
        }
      }
    }
  }
}