{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the project returned by its create or list operation."
    },
    "operationId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the operation returned by its create or list operation."
    }
  },
  "required": [
    "projectId",
    "operationId"
  ],
  "additionalProperties": false
}
