{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/worker-manager/v1/should-worker-terminate-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Decision returned to a worker asking whether to keep running or be terminated",
  "properties": {
    "reason": {
      "description": "Reason why worker should be terminated",
      "minLength": 1,
      "type": "string"
    },
    "terminate": {
      "type": "boolean"
    }
  },
  "required": [
    "terminate",
    "reason"
  ],
  "title": "Should worker terminate response",
  "type": "object"
}