{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "connectionId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the connection returned by its create or list operation."
    },
    "rowIds": {
      "minItems": 1,
      "maxItems": 100,
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 200
      },
      "description": "The row ids value; allowed values and bounds are specified in this schema."
    },
    "idempotencyKey": {
      "type": "string",
      "pattern": "^[\\x21-\\x7e]{1,200}$",
      "description": "Caller-generated key reused only for retries of the same operation and arguments in this workspace."
    }
  },
  "required": [
    "connectionId",
    "rowIds",
    "idempotencyKey"
  ],
  "additionalProperties": false
}
