{
  "plural": "executions",
  "primaryKey": ["executionName"],
  "description": "Statebox executions instances",
  "type": "object",
  "properties": {
    "executionName": {
      "type": "string"
    },
    "ctx": {
      "type": "string"
    },
    "currentStateName": {
      "type": "string"
    },
    "currentResource": {
      "type": "string"
    },
    "stateMachineName": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "executionOptions": {
      "type": "string"
    },
    "parentExecution": {
      "type": "string"
    },
    "childCount": {
      "type": "integer"
    },
    "lastDescribed": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["uuid"],
  "audit": false,
  "indexes": [
    {
      "columns": ["status"],
      "unique": false
    },
    {
      "columns": ["stateMachineName"],
      "unique": false
    },
    {
      "columns": ["executionName"],
      "unique": false
    },
    {
      "columns": ["parentExecution"],
      "unique": false
    }
  ]
}
