{
  "$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."
    },
    "cadence": {
      "type": "string",
      "enum": [
        "weekly",
        "biweekly",
        "monthly"
      ],
      "description": "The cadence value; allowed values and bounds are specified in this schema."
    },
    "memberLimit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 11,
      "description": "The member limit value; allowed values and bounds are specified in this schema."
    }
  },
  "required": [
    "setId",
    "expectedRevision",
    "cadence",
    "memberLimit"
  ],
  "additionalProperties": false
}
