SlashID · Schema

PersonRet

Abridged person structure

IdentityAuthenticationPasswordlessMFAPasskeysUser ManagementCIAMOAuth2OIDCSSORBACSecurity

Properties

Name Type Description
active boolean A flag indicating whether the person is active or not
person_id string The ID of the person
person_type object
region object
handles object
groups object
attributes object
View JSON Schema on GitHub

JSON Schema

person-ret.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://developer.slashid.dev/schemas/PersonRet.json",
  "title": "PersonRet",
  "type": "object",
  "properties": {
    "active": {
      "type": "boolean",
      "description": "A flag indicating whether the person is active or not"
    },
    "person_id": {
      "type": "string",
      "description": "The ID of the person"
    },
    "person_type": {
      "$ref": "#/components/schemas/PersonType"
    },
    "region": {
      "$ref": "#/components/schemas/Region"
    },
    "handles": {
      "$ref": "#/components/schemas/PersonHandlesResponse"
    },
    "groups": {
      "$ref": "#/components/schemas/PersonGroupsResponse"
    },
    "attributes": {
      "$ref": "#/components/schemas/BucketedAttributes"
    }
  },
  "required": [
    "active",
    "person_id",
    "person_type",
    "region"
  ],
  "description": "Abridged person structure"
}