{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/activiti/json-schema/activiti-userrepresentation.json", "title": "UserRepresentation", "description": "Activiti UserRepresentation schema", "properties": { "apps": { "type": "array", "items": { "$ref": "#/components/schemas/LightAppRepresentation" } }, "capabilities": { "type": "array", "items": { "type": "string" } }, "company": { "type": "string" }, "created": { "type": "string", "format": "date-time" }, "email": { "type": "string" }, "externalId": { "type": "string" }, "firstName": { "type": "string" }, "fullname": { "type": "string" }, "groups": { "type": "array", "items": { "$ref": "#/components/schemas/GroupRepresentation" } }, "id": { "type": "integer", "format": "int64" }, "lastName": { "type": "string" }, "lastUpdate": { "type": "string", "format": "date-time" }, "latestSyncTimeStamp": { "type": "string", "format": "date-time" }, "password": { "type": "string" }, "pictureId": { "type": "integer", "format": "int64" }, "status": { "type": "string" }, "tenantId": { "type": "integer", "format": "int64" }, "tenantName": { "type": "string" }, "tenantPictureId": { "type": "integer", "format": "int64" }, "type": { "type": "string" } }, "type": "object" }