Activiti · Schema

UserRepresentation

Activiti UserRepresentation schema

BPMBusiness Process ManagementWorkflowBPMNOpen SourceProcess AutomationJavaREST API

Properties

Name Type Description
apps array
capabilities array
company string
created string
email string
externalId string
firstName string
fullname string
groups array
id integer
lastName string
lastUpdate string
latestSyncTimeStamp string
password string
pictureId integer
status string
tenantId integer
tenantName string
tenantPictureId integer
type string
View JSON Schema on GitHub

JSON Schema

activiti-user.json Raw ↑
{
  "$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"
}