SlashID · Schema

PersonHandle

IdentityAuthenticationPasswordlessMFAPasskeysUser ManagementCIAMOAuth2OIDCSSORBACSecurity

Properties

Name Type Description
type object
value string
View JSON Schema on GitHub

JSON Schema

person-handle.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://developer.slashid.dev/schemas/PersonHandle.json",
  "title": "PersonHandle",
  "required": [
    "type",
    "value"
  ],
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/PersonHandleType"
    },
    "value": {
      "type": "string",
      "example": "[email protected]"
    }
  }
}