{
  "$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."
    },
    "ruleId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the rule returned by its create or list operation."
    },
    "revision": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "Immutable set revision to read or compare."
    }
  },
  "required": [
    "projectId",
    "ruleId",
    "revision"
  ],
  "additionalProperties": false
}
