{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "setId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the set returned by its create or list operation."
    },
    "expectedRevision": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "Revision last read by the caller; mismatches reject concurrent updates."
    },
    "paused": {
      "type": "boolean",
      "description": "The paused value; allowed values and bounds are specified in this schema."
    }
  },
  "required": [
    "setId",
    "expectedRevision",
    "paused"
  ],
  "additionalProperties": false
}
