{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/worker-manager/v1/report-worker-error-request.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "A report of an error from a worker.  This will be recorded with kind\n`worker-error`.\n\nThe worker's `workerGroup` and `workerId` will be added to `extra`.\n",
  "properties": {
    "description": {
      "$ref": "worker-pool-error.json#/properties/description"
    },
    "extra": {
      "$ref": "worker-pool-error.json#/properties/extra"
    },
    "kind": {
      "$ref": "worker-pool-error.json#/properties/kind"
    },
    "title": {
      "$ref": "worker-pool-error.json#/properties/title"
    },
    "workerGroup": {
      "$ref": "worker-full.json#/properties/workerGroup"
    },
    "workerId": {
      "$ref": "worker-full.json#/properties/workerId"
    }
  },
  "required": [
    "workerGroup",
    "workerId",
    "kind",
    "title",
    "description",
    "extra"
  ],
  "title": "Worker Error Report",
  "type": "object"
}