{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/queue/v1/object-credentials.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Temporary credentials for access to the object service.\n\nThese credentials are used both to download artifacts from the object service\n(`getArtifactContent`) and to upload artifacts (`createArtifact`).\n",
  "properties": {
    "accessToken": {
      "description": "The `accessToken` for the temporary credentials.\n",
      "minLength": 1,
      "type": "string"
    },
    "certificate": {
      "description": "The `certificate` for the temporary credentials.\n",
      "minLength": 1,
      "type": "string"
    },
    "clientId": {
      "description": "The `clientId` for the temporary credentials.\n",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "clientId",
    "accessToken",
    "certificate"
  ],
  "title": "Object service Credentials",
  "type": "object"
}