{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/list-provisioners-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "properties": {
    "continuationToken": {
      "description": "Opaque `continuationToken` to be given as query-string option to get the\nnext set of provisioners.\nThis property is only present if another request is necessary to fetch all\nresults. In practice the next request with a `continuationToken` may not\nreturn additional results, but it can. Thus, you can only be sure to have\nall the results if you've called with `continuationToken` until you get a\nresult without a `continuationToken`.\n",
      "title": "Continuation Token",
      "type": "string"
    },
    "provisioners": {
      "items": {
        "additionalProperties": false,
        "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 created will be automatically\ndeleted by the queue.\n",
            "format": "date-time",
            "title": "Provisioner Expiration",
            "type": "string"
          },
          "lastDateActive": {
            "description": "Date and time where 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",
          "stability",
          "expires",
          "lastDateActive",
          "actions"
        ],
        "title": "Provisioner Information",
        "type": "object"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "provisioners"
  ],
  "title": "List Provisioners Response",
  "type": "object"
}