{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/provisioner-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Response containing information about a provisioner.\n",
  "properties": {
    "actions": {
      "$ref": "actions.json#"
    },
    "description": {
      "description": "Description of the provisioner.\n",
      "title": "Description",
      "type": "string"
    },
    "expires": {
      "description": "Date and time after which the provisioner will be automatically\ndeleted by the queue.\n",
      "format": "date-time",
      "title": "Provisioner Expiration",
      "type": "string"
    },
    "lastDateActive": {
      "description": "Date of the last time this provisioner was seen active. `lastDateActive` is updated every half hour\nbut may be off by up-to half an hour. Nonetheless, `lastDateActive` is a good indicator\nof when the provisioner was last seen active.\n",
      "format": "date-time",
      "title": "Provisioner Last Date Active",
      "type": "string"
    },
    "provisionerId": {
      "$ref": "task.json#/properties/provisionerId"
    },
    "stability": {
      "description": "This is the stability of the provisioner. Accepted values:\n  * `experimental`\n  * `stable`\n  * `deprecated`\n",
      "enum": [
        "experimental",
        "stable",
        "deprecated"
      ],
      "title": "Stability",
      "type": "string"
    }
  },
  "required": [
    "provisionerId",
    "description",
    "actions",
    "stability",
    "expires",
    "lastDateActive"
  ],
  "title": "Provisioner Response",
  "type": "object"
}