{ "$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" }