{
  "$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."
    },
    "kind": {
      "type": "string",
      "enum": [
        "domain",
        "url"
      ],
      "description": "The kind value; allowed values and bounds are specified in this schema."
    },
    "value": {
      "type": "string",
      "minLength": 1,
      "maxLength": 2048,
      "description": "The value value; allowed values and bounds are specified in this schema."
    },
    "comments": {
      "description": "The comments value; allowed values and bounds are specified in this schema.",
      "maxItems": 8,
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 120,
        "format": "starts_with",
        "pattern": "^#.*"
      }
    },
    "source": {
      "description": "The source value; allowed values and bounds are specified in this schema.",
      "type": "string",
      "enum": [
        "manual",
        "agent_proposal"
      ]
    },
    "status": {
      "description": "Lifecycle status filter or requested status; this is separate from observation state.",
      "type": "string",
      "enum": [
        "proposed",
        "active"
      ]
    }
  },
  "required": [
    "projectId",
    "kind",
    "value"
  ],
  "additionalProperties": false
}
