{
  "$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."
    },
    "status": {
      "description": "Lifecycle status filter or requested status; this is separate from observation state.",
      "type": "string",
      "enum": [
        "active",
        "paused"
      ]
    },
    "cadenceSeconds": {
      "description": "Scheduled check interval in seconds, from 3600 to 2592000.",
      "type": "integer",
      "minimum": 3600,
      "maximum": 2592000
    }
  },
  "required": [
    "targetId"
  ],
  "additionalProperties": false
}
