{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/auth/v1/azure-table-list-response.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "A list of Azure tables in an account\n",
  "properties": {
    "continuationToken": {
      "description": "Opaque `continuationToken` to be given as query-string option to get the\nnext set of tables.\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 `azureAccountTables` with `continuationToken`\nuntil you get a result without a `continuationToken`.\n",
      "title": "Continuation Token",
      "type": "string"
    },
    "tables": {
      "description": "A list of tables that are in an account. These are\nthe tables that can have SAS credentials fetched for them.\n",
      "items": {
        "type": "string"
      },
      "title": "Azure Tables",
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "tables"
  ],
  "title": "Azure List Table Response",
  "type": "object"
}