{
  "$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."
    },
    "revision": {
      "description": "Immutable set revision to read or compare.",
      "type": "integer",
      "minimum": 1,
      "maximum": 9007199254740990
    }
  },
  "required": [
    "setId"
  ],
  "additionalProperties": false
}
