Temporal · Schema

AsyncOperation

ProCode_API_CompositionWorkflows

Properties

Name Type Description
id string
state string
checkDuration string
operationType string
startedTime string
finishedTime string
failureReason string
View JSON Schema on GitHub

JSON Schema

cloud-ops-async-operation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AsyncOperation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "checkDuration": {
      "type": "string"
    },
    "operationType": {
      "type": "string"
    },
    "startedTime": {
      "type": "string"
    },
    "finishedTime": {
      "type": "string"
    },
    "failureReason": {
      "type": "string"
    }
  }
}