{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "targetId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the target returned by its create or list operation."
    },
    "idempotencyKey": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Caller-generated key reused only for retries of the same operation and arguments in this workspace."
    }
  },
  "required": [
    "targetId",
    "idempotencyKey"
  ],
  "additionalProperties": false
}
