{
  "$id": "https://firefox-ci-tc.services.mozilla.com/schemas/auth/v1/scopeset.json#",
  "$schema": "https://firefox-ci-tc.services.mozilla.com/schemas/common/metaschema.json#",
  "additionalProperties": false,
  "description": "A set of scopes\n",
  "properties": {
    "scopes": {
      "description": "List of scopes.  Scopes must be composed of printable ASCII characters and spaces.\n",
      "items": {
        "description": "Scope",
        "pattern": "^[ -~]*$",
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "scopes"
  ],
  "title": "Set of scopes",
  "type": "object"
}