Activiti · Schema

TenantRepresentation

Activiti TenantRepresentation schema

BPMBusiness Process ManagementWorkflowBPMNOpen SourceProcess AutomationJavaREST API

Properties

Name Type Description
active boolean
created string
domain string
id integer
lastUpdate string
logoId integer
maxUsers integer
name string
View JSON Schema on GitHub

JSON Schema

activiti-tenant.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/activiti/json-schema/activiti-tenantrepresentation.json",
  "title": "TenantRepresentation",
  "description": "Activiti TenantRepresentation schema",
  "properties": {
    "active": {
      "type": "boolean"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "domain": {
      "type": "string"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "lastUpdate": {
      "type": "string",
      "format": "date-time"
    },
    "logoId": {
      "type": "integer",
      "format": "int64"
    },
    "maxUsers": {
      "type": "integer",
      "format": "int32"
    },
    "name": {
      "type": "string"
    }
  },
  "type": "object"
}