{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/auth/v1/azure-container-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "Response to a request for an Shared-Access-Signature to access an Azure\nBlob Storage container.\n",
  "properties": {
    "expiry": {
      "description": "Date and time of when the Shared-Access-Signature expires.\n",
      "format": "date-time",
      "type": "string"
    },
    "sas": {
      "description": "Shared-Access-Signature string. This is the querystring parameters to\nbe appened after `?` or `&` depending on whether or not a querystring is\nalready present in the URL.\n",
      "type": "string"
    }
  },
  "required": [
    "sas",
    "expiry"
  ],
  "title": "Azure Blob Shared-Access-Signature",
  "type": "object"
}