{
  "$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": {
      "type": "integer",
      "minimum": 1,
      "maximum": 9007199254740990,
      "description": "Immutable set revision to read or compare."
    },
    "memberId": {
      "description": "Identifier of the member returned by its create or list operation.",
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "cursor": {
      "description": "Opaque continuation returned by this same listing; omit for the first page.",
      "type": "string",
      "minLength": 1,
      "maxLength": 1024
    },
    "limit": {
      "description": "Maximum rows in this page or bounded report; subject to the schema maximum.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 50
    }
  },
  "required": [
    "setId",
    "revision"
  ],
  "additionalProperties": false
}
