ForgeRock · Schema

ProcessInstance

A running workflow process instance

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
_id string
processDefinitionId string
businessKey string
startTime string
startUserId string
status string
View JSON Schema on GitHub

JSON Schema

forgerock-processinstance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProcessInstance",
  "title": "ProcessInstance",
  "type": "object",
  "description": "A running workflow process instance",
  "properties": {
    "_id": {
      "type": "string"
    },
    "processDefinitionId": {
      "type": "string"
    },
    "businessKey": {
      "type": "string"
    },
    "startTime": {
      "type": "string",
      "format": "date-time"
    },
    "startUserId": {
      "type": "string"
    },
    "status": {
      "type": "string"
    }
  }
}