{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "resourceType": {
      "type": "string",
      "enum": [
        "watch",
        "target",
        "project"
      ],
      "description": "The resource type value; allowed values and bounds are specified in this schema."
    },
    "resourceId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the resource returned by its create or list operation."
    }
  },
  "required": [
    "resourceType",
    "resourceId"
  ],
  "additionalProperties": false
}
