Activiti · Schema

GroupRepresentation

Activiti GroupRepresentation schema

BPMBusiness Process ManagementWorkflowBPMNOpen SourceProcess AutomationJavaREST API

Properties

Name Type Description
capabilities array
externalId string
groups array
id integer
lastSyncTimeStamp string
name string
parentGroupId integer
status string
tenantId integer
type integer
userCount integer
users array
View JSON Schema on GitHub

JSON Schema

activiti-group.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/activiti/json-schema/activiti-grouprepresentation.json",
  "title": "GroupRepresentation",
  "description": "Activiti GroupRepresentation schema",
  "properties": {
    "capabilities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupCapabilityRepresentation"
      }
    },
    "externalId": {
      "type": "string"
    },
    "groups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupRepresentation"
      }
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "lastSyncTimeStamp": {
      "type": "string",
      "format": "date-time"
    },
    "name": {
      "type": "string"
    },
    "parentGroupId": {
      "type": "integer",
      "format": "int64"
    },
    "status": {
      "type": "string"
    },
    "tenantId": {
      "type": "integer",
      "format": "int64"
    },
    "type": {
      "type": "integer",
      "format": "int32"
    },
    "userCount": {
      "type": "integer",
      "format": "int64"
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserRepresentation"
      }
    }
  },
  "type": "object"
}