Awesome Reviewers

When updating Sentinel solution documentation artifacts (workbooks metadata, UI definitions, and connector table schemas), treat them as schema- and regeneration-driven. Ensure values match platform conventions and that any generated text will be correct after regeneration.

Apply these rules: 1) Follow required schema/doc fields

Example (pattern):

{
  "properties": {
    "retentionInDays": 180,
    "schema": {
      "name": "ExampleTable_CL",
      "description": "Describes what ExampleTable contains and how it is used in Sentinel.",
      "columns": [
        { "name": "ExampleColumn", "type": "string", "description": "Meaning of the column." }
      ]
    }
  }
}

2) Use the correct relative paths/URIs

3) Don’t hand-edit autogenerated UI boilerplate

4) Prevent UI text truncation by fixing the source descriptions

Net effect: your PR improves the correctness of end-user-facing documentation (UI text, schema descriptions, and metadata paths) and avoids “false-positive” validation failures caused by regeneration, length limits, or nonconforming paths/URIs.