{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/quarantine-worker-request.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Request to update a worker's quarantineUntil property.\n",
  "properties": {
    "quarantineInfo": {
      "description": "A message to be included in the worker's quarantine details. This message will be\nappended to the existing quarantine details to keep a history of the worker's quarantine.\n",
      "maxLength": 4000,
      "minLength": 0,
      "title": "Worker Quarantine Info",
      "type": "string"
    },
    "quarantineUntil": {
      "description": "Quarantining a worker allows the machine to remain alive but not accept jobs.\nOnce the quarantineUntil time has elapsed, the worker resumes accepting jobs.\nNote that a quarantine can be lifted by setting `quarantineUntil` to the present time (or\nsomewhere in the past).\n",
      "format": "date-time",
      "title": "Worker Quarantine",
      "type": "string"
    }
  },
  "required": [
    "quarantineUntil"
  ],
  "title": "Quarantine Worker Request",
  "type": "object"
}