{
  "generated_from": "runtime/js/modules/xuda-error-registry-module.mjs",
  "runtime_definition_count": 36,
  "deployment_definition_count": 14,
  "checker_definition_count": 220,
  "total_definition_count": 270,
  "definitions": [
    {
      "code": "RUN_MSG_API_010",
      "title": "Xuda API Missing Identifier",
      "severity": "error",
      "domain": "runtime",
      "category": "api",
      "summary": "A public `xu.*` helper was called without a required field or event identifier.",
      "causes": [
        "`field_id` was empty for a field helper.",
        "`event_id` was empty for an event helper."
      ],
      "resolution_steps": [
        "Pass a non-empty field or event identifier to the helper.",
        "If the identifier is dynamic, verify the expression resolves before the API call.",
        "Guard helper calls when the underlying field or event may not exist."
      ],
      "help_slug": "runtime-api-missing-identifier",
      "legacy_patterns": [
        "field_id cannot be empty",
        "event_id cannot be empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_API_020",
      "title": "Xuda API Field Not Found",
      "severity": "error",
      "domain": "runtime",
      "category": "api",
      "summary": "A public `xu.*` field helper referenced a field that is not present in the current datasource context.",
      "causes": [
        "The requested field id is not part of the active datasource.",
        "The wrong datasource context was used for the API call."
      ],
      "resolution_steps": [
        "Confirm the field exists in the current program fieldset or datasource.",
        "Verify the helper is called from the correct screen or datasource scope.",
        "If the field is dynamic, ensure the datasource is initialized before the call."
      ],
      "help_slug": "runtime-api-field-not-found",
      "legacy_patterns": [
        "field not found"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_API_030",
      "title": "Xuda API Invalid Field Value",
      "severity": "error",
      "domain": "runtime",
      "category": "api",
      "summary": "A public `xu.*` helper was called with an invalid or missing value payload.",
      "causes": [
        "The requested field update value was `undefined`.",
        "A caller attempted to set a field before computing the new value."
      ],
      "resolution_steps": [
        "Pass a defined value to the helper.",
        "Guard optional values before writing them into the datasource.",
        "If the value is expression-driven, validate the expression result before calling the API."
      ],
      "help_slug": "runtime-api-invalid-field-value",
      "legacy_patterns": [
        "value cannot be undefined"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_API_040",
      "title": "Xuda API Event Identifier Missing",
      "severity": "error",
      "domain": "runtime",
      "category": "api",
      "summary": "A public `xu.*` event helper was called without a required event identifier.",
      "causes": [
        "The caller passed an empty event id.",
        "A dynamic event id resolved to an empty value."
      ],
      "resolution_steps": [
        "Pass a non-empty event id to the helper.",
        "Ensure dynamic event names resolve before invocation.",
        "Add a guard when the event is optional."
      ],
      "help_slug": "runtime-api-event-id-missing",
      "legacy_patterns": [
        "xu.invokeEvent: event_id cannot be empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_API_050",
      "title": "Xuda API Event Not Found",
      "severity": "error",
      "domain": "runtime",
      "category": "api",
      "summary": "A public `xu.*` event helper referenced an event that could not be found in any active datasource scope.",
      "causes": [
        "The requested event name does not exist.",
        "The event exists in a different screen or datasource scope.",
        "The event registry was not initialized yet."
      ],
      "resolution_steps": [
        "Verify the event exists and is spelled correctly.",
        "Call the helper from the correct screen or datasource scope.",
        "Delay the invocation until the target program has finished initializing."
      ],
      "help_slug": "runtime-api-event-not-found",
      "legacy_patterns": [
        "event_id not found"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_API_090",
      "title": "Xuda API Request Failed",
      "severity": "error",
      "domain": "runtime",
      "category": "api",
      "summary": "A public `xu.*` helper failed while performing an async runtime request.",
      "causes": [
        "A fetch or runtime helper threw an exception.",
        "A dependent runtime service was unavailable.",
        "The API helper was called with invalid runtime context."
      ],
      "resolution_steps": [
        "Inspect the attached exception and request parameters.",
        "Verify network connectivity and runtime service availability.",
        "Check the current session, datasource, and program context for the helper call."
      ],
      "help_slug": "runtime-api-request-failed",
      "legacy_patterns": [
        "xu.readDrive error",
        "xu.writeDrive error",
        "xu.callApiProgram error"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DB_010",
      "title": "Replication Failed",
      "severity": "error",
      "domain": "runtime",
      "category": "database",
      "summary": "A database replication or change feed operation failed.",
      "causes": [
        "The remote database or websocket endpoint is unavailable.",
        "Replication credentials or headers are invalid.",
        "A replication callback threw during change handling."
      ],
      "resolution_steps": [
        "Inspect the replication error payload and remote endpoint reachability.",
        "Verify authentication headers and database selection.",
        "Check replication callbacks for thrown exceptions during change handling."
      ],
      "help_slug": "runtime-replication-failed",
      "legacy_patterns": [
        "replication from error"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DB_020",
      "title": "Datasource Feed Empty",
      "severity": "error",
      "domain": "runtime",
      "category": "database",
      "summary": "A database-backed datasource operation expected rows but the feed was empty.",
      "causes": [
        "The underlying query returned no rows when rows were mandatory.",
        "The datasource was initialized without expected replication data.",
        "The wrong table or index was targeted."
      ],
      "resolution_steps": [
        "Inspect the datasource query and table id.",
        "Verify the datasource was populated before the operation ran.",
        "Handle empty feeds explicitly when no rows are a valid state."
      ],
      "help_slug": "runtime-datasource-feed-empty",
      "legacy_patterns": [
        "data_feed rows is empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DSC_010",
      "title": "Datasource Missing",
      "severity": "error",
      "domain": "runtime",
      "category": "datasource",
      "summary": "A runtime operation referenced a datasource session that does not exist.",
      "causes": [
        "The datasource session id is wrong or stale.",
        "The datasource was cleaned before the operation ran.",
        "The caller used the wrong datasource scope."
      ],
      "resolution_steps": [
        "Verify the datasource session exists before using it.",
        "Check cleanup timing around modals, panels, or screen transitions.",
        "Pass the correct datasource session to field and event helpers."
      ],
      "help_slug": "runtime-datasource-missing",
      "legacy_patterns": [
        "Datasource not exist:",
        "Missing datasource:"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DSC_020",
      "title": "Datasource Table Reference Missing",
      "severity": "error",
      "domain": "runtime",
      "category": "datasource",
      "summary": "A table-backed datasource or field was used without a `dataSourceTableId` reference.",
      "causes": [
        "The program fieldset contains `type: \"table\"` fields but no datasource table id.",
        "The datasource configuration was partially removed or never defined."
      ],
      "resolution_steps": [
        "Set a valid `progDataSource.dataSourceTableId` on the program.",
        "If the field is not table-backed, change the field type to the correct non-table type.",
        "Re-save the program after fixing datasource metadata."
      ],
      "help_slug": "runtime-datasource-table-id-missing",
      "legacy_patterns": [
        "Table type defined without dataSourceTableId deceleration"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DSC_030",
      "title": "Datasource Table Not Found",
      "severity": "error",
      "domain": "runtime",
      "category": "datasource",
      "summary": "A datasource referenced a table that could not be found or resolved.",
      "causes": [
        "The referenced table id does not exist.",
        "The table was removed or not loaded into the runtime cache.",
        "The datasource references a stale table id."
      ],
      "resolution_steps": [
        "Verify the table exists and the referenced id is correct.",
        "Ensure the table document is loaded into the runtime context.",
        "Update the datasource to point to the correct table id."
      ],
      "help_slug": "runtime-datasource-table-not-found",
      "legacy_patterns": [
        "Table not found:",
        "dataSourceTableId reference error"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DSC_040",
      "title": "Datasource Row Or Feed Missing",
      "severity": "error",
      "domain": "runtime",
      "category": "datasource",
      "summary": "A datasource operation expected a row or data feed that was not available.",
      "causes": [
        "The requested row id does not exist.",
        "The datasource data feed was not initialized.",
        "The current record pointer is stale."
      ],
      "resolution_steps": [
        "Verify the current record id exists in the datasource rows.",
        "Ensure the datasource is initialized before reading row values.",
        "Refresh or rebuild the datasource when record pointers become stale."
      ],
      "help_slug": "runtime-datasource-row-or-feed-missing",
      "legacy_patterns": [
        "_raw_data_rows not found",
        "ROWID",
        "data_feed not found",
        "data_feed rows is empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DSC_050",
      "title": "Datasource Deadlock Detected",
      "severity": "warning",
      "domain": "runtime",
      "category": "datasource",
      "summary": "A datasource flow detected a likely deadlock or stalled update path.",
      "causes": [
        "Two datasource operations are waiting on one another.",
        "A refresh or lock state was never cleared.",
        "A repeated async update loop stalled the datasource."
      ],
      "resolution_steps": [
        "Inspect the datasource update path and lock lifecycle.",
        "Check nested refresh or save flows for re-entry.",
        "Clear or redesign stale locking logic around datasource mutation."
      ],
      "help_slug": "runtime-datasource-deadlock",
      "legacy_patterns": [
        "deadlock detected"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_DSC_060",
      "title": "Datasource Field Lookup Invalid",
      "severity": "warning",
      "domain": "runtime",
      "category": "datasource",
      "summary": "A datasource field lookup failed because the field id or lookup context was invalid.",
      "causes": [
        "The field id type is invalid.",
        "A datasource row lookup failed and fell back to parameter search.",
        "The datasource lookup context is incomplete."
      ],
      "resolution_steps": [
        "Pass a string field id to datasource helpers.",
        "Verify the active datasource record exists before reading the field.",
        "Inspect fallback-to-parameter cases that should have resolved in the datasource."
      ],
      "help_slug": "runtime-datasource-field-lookup-invalid",
      "legacy_patterns": [
        "Invalid field id type:",
        "Datasource row lookup failed"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_EVT_010",
      "title": "Program Reference Not Found",
      "severity": "error",
      "domain": "runtime",
      "category": "event",
      "summary": "The runtime tried to execute or initialize a program that does not exist or was empty.",
      "causes": [
        "The target program id is wrong or missing.",
        "The referenced program was not loaded into the runtime cache.",
        "A route or event payload produced an empty program reference."
      ],
      "resolution_steps": [
        "Verify the referenced program id exists in the project.",
        "Check route or event payload expressions that compute the program id.",
        "Ensure the program is available in the runtime document cache before invoking it."
      ],
      "help_slug": "runtime-program-reference-not-found",
      "legacy_patterns": [
        "Program not found",
        "Program not exist",
        "program is empty",
        "program not defined",
        "prog empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_EVT_020",
      "title": "Invalid On-Load Event Invocation",
      "severity": "error",
      "domain": "runtime",
      "category": "event",
      "summary": "An onscreen event was invoked from an unsupported on-load context.",
      "causes": [
        "A window, modal, or similar onscreen event was triggered during on-load.",
        "The event flow used a presentation action in an initialization-only stage."
      ],
      "resolution_steps": [
        "Move the onscreen action to a user-triggered event or a later lifecycle stage.",
        "Avoid opening windows or modal screens directly from on-load handlers."
      ],
      "help_slug": "runtime-invalid-on-load-event",
      "legacy_patterns": [
        "onscreen (window,modal etc..) event cannot be invoked by on_load"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_EVT_030",
      "title": "Pending URL Event Payload Incomplete",
      "severity": "warning",
      "domain": "runtime",
      "category": "event",
      "summary": "A pending URL event could not be resolved because the URL payload was missing required values.",
      "causes": [
        "The pending event URL was empty.",
        "The pending event did not contain a target program id."
      ],
      "resolution_steps": [
        "Inspect the pending URL event payload and confirm `prog` is present.",
        "Avoid enqueueing empty pending URL events.",
        "Validate URL-derived parameters before invoking the event flow."
      ],
      "help_slug": "runtime-pending-url-event-incomplete",
      "legacy_patterns": [
        "url empty",
        "prog empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_EVT_060",
      "title": "User Event Identifier Missing Or Unknown",
      "severity": "warning",
      "domain": "runtime",
      "category": "event",
      "summary": "A user-defined event could not be invoked because the event identifier was missing or not found.",
      "causes": [
        "The event id parameter was empty.",
        "No active datasource contained the requested user-defined event."
      ],
      "resolution_steps": [
        "Pass a valid event identifier.",
        "Verify the event exists in one of the active programs.",
        "Invoke the event only after the target screen is mounted."
      ],
      "help_slug": "runtime-user-event-missing-or-unknown",
      "legacy_patterns": [
        "event_id Cannot be empty",
        "event_id not found"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_EXP_010",
      "title": "Expression Or VM Execution Failed",
      "severity": "error",
      "domain": "runtime",
      "category": "expression",
      "summary": "The runtime could not execute an expression, eval payload, or sandboxed JavaScript block.",
      "causes": [
        "The expression syntax is invalid.",
        "The sandboxed script threw an exception.",
        "Referenced variables or helpers were missing at execution time."
      ],
      "resolution_steps": [
        "Inspect the failing expression or JavaScript payload.",
        "Verify referenced variables and helpers exist in the current execution scope.",
        "Fix syntax or runtime assumptions before re-running the expression."
      ],
      "help_slug": "runtime-expression-execution-failed",
      "legacy_patterns": [
        "Execution error:",
        "vm error",
        "Failed to execute script.",
        "Asynchronous error caught."
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_GEN_000",
      "title": "Unhandled Runtime Error",
      "severity": "error",
      "domain": "runtime",
      "category": "general",
      "summary": "The runtime hit an unexpected error that did not match a more specific code.",
      "causes": [
        "An exception bubbled out of a runtime code path without a specific classifier.",
        "A new failure mode is not yet mapped to a dedicated runtime code."
      ],
      "resolution_steps": [
        "Inspect the attached stack trace and source context.",
        "Check the console or persisted log entry for the originating source and payload.",
        "If the same failure repeats, add a dedicated runtime code and targeted resolution."
      ],
      "help_slug": "runtime-unhandled-error",
      "legacy_patterns": [
        "generic fallback"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_GEN_010",
      "title": "Runtime Bootstrap Input Error",
      "severity": "error",
      "domain": "runtime",
      "category": "bootstrap",
      "summary": "Xuda was initialized with missing or invalid bootstrap arguments.",
      "causes": [
        "The root element was missing or not found.",
        "The runtime options object was missing or had the wrong type.",
        "The session was missing a required app identifier."
      ],
      "resolution_steps": [
        "Pass a valid root HTML element or selector to `xuda(...)`.",
        "Ensure the options argument is a plain object.",
        "Verify `app_id` is present in runtime options or URL parameters before initialization."
      ],
      "help_slug": "runtime-bootstrap-input-error",
      "legacy_patterns": [
        "Xuda Error - element argument is empty",
        "Xuda Error - element not found",
        "Xuda Error - opt argument is undefined",
        "Xuda Error - opt argument is not an object",
        "no app_id found"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_GEN_020",
      "title": "Unhandled Promise Rejection",
      "severity": "error",
      "domain": "runtime",
      "category": "general",
      "summary": "A promise was rejected without a matching `catch`, so the rejection bubbled to the global browser handler.",
      "causes": [
        "An async code path rejected and no caller handled it.",
        "A promise was rejected with an empty or weak error payload, making the failure harder to classify.",
        "A lower-level runtime helper rejected after losing the original error object."
      ],
      "resolution_steps": [
        "Inspect the rejection reason and stack in the attached context.",
        "Add a local `catch` or `try/catch` around the async call that can fail.",
        "Preserve the original error when rejecting promises instead of rejecting with `undefined` or an empty string."
      ],
      "help_slug": "runtime-unhandled-promise-rejection",
      "legacy_patterns": [
        "window.unhandledrejection",
        "Unhandled promise rejection"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_GUI_010",
      "title": "Teleport Target Container Not Found",
      "severity": "error",
      "domain": "runtime",
      "category": "ui",
      "summary": "A `xu-teleport` node referenced a target container that does not exist in the document.",
      "causes": [
        "The selector in `to` does not match any element.",
        "The target container is created after teleport rendering starts."
      ],
      "resolution_steps": [
        "Verify the teleport selector matches an element that already exists.",
        "Render the target container before the teleport content.",
        "Avoid using transient or debug-only selectors for teleport targets."
      ],
      "help_slug": "runtime-teleport-target-missing",
      "legacy_patterns": [
        "for xuTeleportData not found"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_GUI_020",
      "title": "UI Framework Setup Load Failed",
      "severity": "warning",
      "domain": "runtime",
      "category": "ui",
      "summary": "The runtime could not load optional UI framework setup resources.",
      "causes": [
        "The plugin setup module is missing.",
        "The plugin setup import failed due to a packaging problem.",
        "The current environment cannot resolve the optional setup resource."
      ],
      "resolution_steps": [
        "Confirm the UI framework plugin exposes its optional setup entry correctly.",
        "Verify the plugin package contains the expected setup resource.",
        "If the setup module is optional, confirm the runtime can continue without it."
      ],
      "help_slug": "runtime-ui-framework-setup-load-failed",
      "legacy_patterns": [
        "plugin setup import failed"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_NET_010",
      "title": "Runtime Resource Load Failed",
      "severity": "warning",
      "domain": "runtime",
      "category": "network",
      "summary": "The runtime could not load an external resource such as a CDN asset or plugin file.",
      "causes": [
        "The URL is wrong or unavailable.",
        "The resource format is invalid.",
        "The network request failed in the current environment."
      ],
      "resolution_steps": [
        "Verify the resource URL and response status.",
        "Confirm the file format matches the expected runtime loader.",
        "Retry in an environment with network access or bundle the resource locally."
      ],
      "help_slug": "runtime-resource-load-failed",
      "legacy_patterns": [
        "Fail to load:",
        "cdn resource in wrong format"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_010",
      "title": "Invalid xu-on Workflow Syntax",
      "severity": "error",
      "domain": "runtime",
      "category": "render",
      "summary": "The runtime could not parse a `xu-on:*` workflow payload.",
      "causes": [
        "The attribute payload is not valid JSON5.",
        "The encoded workflow value contains malformed syntax.",
        "The workflow was stringified incorrectly during import or authoring."
      ],
      "resolution_steps": [
        "Inspect the `xu-on:*` attribute value.",
        "Fix JSON5 syntax or encoding issues in the workflow payload.",
        "If the payload was imported, re-export it in valid Xuda workflow format."
      ],
      "help_slug": "runtime-invalid-xu-on-workflow",
      "legacy_patterns": [
        "xu-on has invalid workflow syntax"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_020",
      "title": "Slim Mode Screen Type Unsupported",
      "severity": "error",
      "domain": "runtime",
      "category": "render",
      "summary": "Slim mode tried to render a screen type that requires a UI framework plugin.",
      "causes": [
        "Modal, popover, or page rendering was requested in slim mode without a UI framework plugin.",
        "The runtime entered a presentation path that slim mode cannot satisfy."
      ],
      "resolution_steps": [
        "Install and initialize a compatible UI framework plugin.",
        "Avoid modal/popover/page presentation flows in slim mode.",
        "Switch to a full runtime mode when framework presentation is required."
      ],
      "help_slug": "runtime-slim-mode-screen-unsupported",
      "legacy_patterns": [
        "Slim mode does not support"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_030",
      "title": "Invalid Screen Entry",
      "severity": "error",
      "domain": "runtime",
      "category": "render",
      "summary": "The runtime tried to initialize a screen with an empty or invalid screen object.",
      "causes": [
        "The target program id was empty.",
        "The referenced program is not a screen program.",
        "A screen initialization flow received the wrong program metadata."
      ],
      "resolution_steps": [
        "Verify the target screen program id before initialization.",
        "Ensure the referenced program is a valid screen object.",
        "Inspect route, event, or panel payloads that computed the screen reference."
      ],
      "help_slug": "runtime-invalid-screen-entry",
      "legacy_patterns": [
        "program is empty",
        "program is not a screen object"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_040",
      "title": "Empty UI Node Selection",
      "severity": "warning",
      "domain": "runtime",
      "category": "render",
      "summary": "The runtime attempted to render or refresh a UI node selection that resolved to no live nodes.",
      "causes": [
        "The target node was removed before refresh.",
        "The selection key no longer points to a live UI node.",
        "The render path ran before the live DOM node existed."
      ],
      "resolution_steps": [
        "Inspect the calling render or refresh path.",
        "Ensure the node exists before trying to mutate or refresh it.",
        "Check whether the underlying screen was already cleaned or replaced."
      ],
      "help_slug": "runtime-empty-ui-node-selection",
      "legacy_patterns": [
        "ui node empty"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_050",
      "title": "Screen Ready Deadlock",
      "severity": "warning",
      "domain": "runtime",
      "category": "render",
      "summary": "The screen-ready lifecycle stalled while waiting for the rendered UI to become discoverable.",
      "causes": [
        "The screen root was detached or replaced before ready events ran.",
        "A render loop or cleanup race prevented the ready target from being found."
      ],
      "resolution_steps": [
        "Inspect screen-ready lifecycle hooks and cleanup races.",
        "Verify the screen root survives until ready events execute.",
        "Check recent rendering changes around root replacement or async child mounting."
      ],
      "help_slug": "runtime-screen-ready-deadlock",
      "legacy_patterns": [
        "deadlock detected for screen ready"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_060",
      "title": "Unknown xu Directive",
      "severity": "error",
      "domain": "runtime",
      "category": "render",
      "summary": "The runtime encountered an unknown `xu-*` directive during attribute execution.",
      "causes": [
        "The directive name is misspelled.",
        "The relevant runtime handler bundle is missing.",
        "A generated document used a directive that is not supported by the current runtime build."
      ],
      "resolution_steps": [
        "Verify the directive name and spelling.",
        "Check that the runtime build includes the expected handler module.",
        "Regenerate the document if it was produced by a newer authoring tool than the current runtime."
      ],
      "help_slug": "runtime-unknown-xu-directive",
      "legacy_patterns": [
        "Unknown xu directive"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_RND_070",
      "title": "Realtime Refresh Failed",
      "severity": "warning",
      "domain": "runtime",
      "category": "render",
      "summary": "The runtime failed to refresh a realtime-bound screen after a document change.",
      "causes": [
        "A refresh action threw inside realtime update orchestration.",
        "The target datasource or screen state was no longer valid.",
        "A panel or screen refresh raced with cleanup."
      ],
      "resolution_steps": [
        "Inspect the realtime datasource and the affected screen state.",
        "Confirm the datasource is still mounted when realtime changes arrive.",
        "Check the attached exception for the refresh action that failed."
      ],
      "help_slug": "runtime-realtime-refresh-failed",
      "legacy_patterns": [
        "realtime refresh failed"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_WRK_010",
      "title": "Worker Busy Threshold Exceeded",
      "severity": "warning",
      "domain": "runtime",
      "category": "worker",
      "summary": "A runtime worker stayed busy longer than the configured threshold.",
      "causes": [
        "A worker job is stalled or long-running.",
        "The worker is blocked on an unresponsive dependency.",
        "Too many heavy jobs were scheduled concurrently."
      ],
      "resolution_steps": [
        "Inspect pending worker jobs and long-running tasks.",
        "Profile the worker path for blocking operations.",
        "Split or defer heavy jobs if the worker remains saturated."
      ],
      "help_slug": "runtime-worker-busy-threshold",
      "legacy_patterns": [
        "worker processing more then 10 second"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_WRK_020",
      "title": "Worker Not Responding",
      "severity": "error",
      "domain": "runtime",
      "category": "worker",
      "summary": "A runtime worker stopped responding and the runtime requested a reset.",
      "causes": [
        "The worker deadlocked or crashed.",
        "A message callback never completed.",
        "A worker-side exception left the job queue in a broken state."
      ],
      "resolution_steps": [
        "Inspect pending jobs and recent worker exceptions.",
        "Review worker reset timing and message flow.",
        "Restart or recreate the worker after fixing the blocking path."
      ],
      "help_slug": "runtime-worker-not-responding",
      "legacy_patterns": [
        "worker not responding"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_WRK_030",
      "title": "Worker Job Missing",
      "severity": "warning",
      "domain": "runtime",
      "category": "worker",
      "summary": "A worker callback or completion path referenced a job that no longer exists.",
      "causes": [
        "The job was already cleaned up.",
        "The worker emitted a stale callback.",
        "Job lifecycle and cleanup are out of sync."
      ],
      "resolution_steps": [
        "Inspect worker job creation and cleanup timing.",
        "Verify callbacks are not emitted after a job is deleted.",
        "Add guards where async worker flows outlive their job records."
      ],
      "help_slug": "runtime-worker-job-missing",
      "legacy_patterns": [
        "worker job not found"
      ],
      "related_codes": []
    },
    {
      "code": "RUN_MSG_WRK_040",
      "title": "Worker Screen Ready Deadlock",
      "severity": "warning",
      "domain": "runtime",
      "category": "worker",
      "summary": "A worker-assisted screen-ready flow stalled before completing.",
      "causes": [
        "The ready event target could not be resolved.",
        "A worker lifecycle race blocked the ready completion path.",
        "The screen was cleaned before the ready sequence finished."
      ],
      "resolution_steps": [
        "Inspect the screen-ready and worker interaction path.",
        "Check for cleanup or navigation races around mount completion.",
        "Ensure ready events run only after the target screen is fully mounted."
      ],
      "help_slug": "runtime-worker-screen-ready-deadlock",
      "legacy_patterns": [
        "deadlock detected for screen ready"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_API_010",
      "title": "Deployment API Program Lookup Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "api",
      "summary": "The deployment server could not resolve the requested API program from the deployed build.",
      "causes": [
        "The program id is missing or invalid.",
        "The program was not included in the deployed build.",
        "The request targets the wrong deployment."
      ],
      "resolution_steps": [
        "Verify the requested `prog_id` exists in the deployed build.",
        "Check that the API request is being sent to the correct deployment host.",
        "Redeploy if the build index is missing the API program."
      ],
      "help_slug": "deployment-api-program-lookup-failed",
      "legacy_patterns": [
        "Program not exist",
        "error - view_id not found"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_API_020",
      "title": "Unsupported Deployment API Program Type",
      "severity": "error",
      "domain": "deployment",
      "category": "api",
      "summary": "A deployment API request targeted a program that is not an API program.",
      "causes": [
        "The requested program is not configured as `menuType: api`.",
        "A route or client request points to the wrong program id.",
        "Deployment metadata is out of sync with the intended API target."
      ],
      "resolution_steps": [
        "Point the request to a deployed API program.",
        "Verify the target program `menuType` is `api`.",
        "Redeploy after correcting the API target program or route configuration."
      ],
      "help_slug": "deployment-unsupported-api-program-type",
      "legacy_patterns": [
        "is not supported for api job"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_API_030",
      "title": "Deployment API Execution Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "api",
      "summary": "The deployment server failed while executing a deployed API program.",
      "causes": [
        "The worker execution raised an exception.",
        "The API program emitted invalid output for the requested response type.",
        "The deployment server hit a runtime failure while preparing the API datasource."
      ],
      "resolution_steps": [
        "Inspect the deployment worker logs and stack trace.",
        "Verify the API program output type matches the rendered output.",
        "Retry after confirming the worker and datasource layers are healthy."
      ],
      "help_slug": "deployment-api-execution-failed",
      "legacy_patterns": [
        "execute_api_program"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_CCH_010",
      "title": "Deployment Couch Connection Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "database",
      "summary": "The deployment process could not resolve or connect to the correct CouchDB database.",
      "causes": [
        "The target app or datacenter document could not be loaded.",
        "Deployment database credentials or endpoints are invalid.",
        "The database service is unavailable from the deployment host."
      ],
      "resolution_steps": [
        "Verify the deployment app and datacenter documents exist.",
        "Check the generated CouchDB connection settings for the deployment.",
        "Confirm network connectivity from the deployment server to CouchDB."
      ],
      "help_slug": "deployment-couch-connection-failed",
      "legacy_patterns": [
        "get_couch error"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_CFG_010",
      "title": "Deployment Configuration Mismatch",
      "severity": "error",
      "domain": "deployment",
      "category": "configuration",
      "summary": "The deployment runtime detected missing or inconsistent deployment configuration.",
      "causes": [
        "The requested app id is missing.",
        "The loaded deployment config does not match the active app id.",
        "The deployment process started with the wrong config payload."
      ],
      "resolution_steps": [
        "Verify the deployment process booted with the correct app id.",
        "Check the deployment config and environment variables used by the process.",
        "Redeploy or restart the process with the matching deployment configuration."
      ],
      "help_slug": "deployment-configuration-mismatch",
      "legacy_patterns": [
        "get_app_id",
        "get_app_id not match to",
        "get_project_app_id"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_DBS_010",
      "title": "Deployment DB Plugin Execution Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "database",
      "summary": "A deployment-side database plugin or server script failed during execution.",
      "causes": [
        "The DB plugin threw an exception.",
        "The VM wrapper rejected or timed out.",
        "The plugin script is incompatible with the current deployment environment."
      ],
      "resolution_steps": [
        "Inspect the DB plugin method and deployment-side stack trace.",
        "Verify the plugin script and setup document are valid.",
        "Check for timeout, VM sandbox, or dependency issues in the plugin environment."
      ],
      "help_slug": "deployment-db-plugin-execution-failed",
      "legacy_patterns": [
        "Failed to execute script.",
        "Asynchronous error caught.",
        "dbs_"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_DPL_010",
      "title": "Deployed Program Build Entry Missing",
      "severity": "error",
      "domain": "deployment",
      "category": "deployment",
      "summary": "The deployment build did not contain the requested program or route document entry.",
      "causes": [
        "The build view is missing the requested program id.",
        "The deployment is serving an outdated or incomplete build.",
        "The requested program was removed or not deployed."
      ],
      "resolution_steps": [
        "Confirm the requested program id exists in the current deployment build.",
        "Rebuild and redeploy the app if the build index is stale or incomplete.",
        "Verify the route or API request points to a deployed program id."
      ],
      "help_slug": "deployment-program-build-entry-missing",
      "legacy_patterns": [
        "error - view_id not found"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_DPL_020",
      "title": "Deployment Session Expired",
      "severity": "warning",
      "domain": "deployment",
      "category": "session",
      "summary": "The deployment request referenced an expired or invalid session token.",
      "causes": [
        "The app token is expired.",
        "The requested session was already closed.",
        "The client is using a stale session id."
      ],
      "resolution_steps": [
        "Create a fresh session token before retrying the request.",
        "Ensure the client refreshes expired deployment sessions.",
        "Check whether session cleanup is expiring tokens too aggressively."
      ],
      "help_slug": "deployment-session-expired",
      "legacy_patterns": [
        "session expired"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_DPL_030",
      "title": "Deployment Route File Load Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "routing",
      "summary": "The deployment server could not load or parse a router definition file.",
      "causes": [
        "The route file is missing from the deployment filesystem.",
        "The route JSON is malformed.",
        "The deployment is pointing to the wrong route document id."
      ],
      "resolution_steps": [
        "Verify the route file exists in the deployed filesystem.",
        "Validate the route document JSON.",
        "Redeploy the router build if the route document was not published correctly."
      ],
      "help_slug": "deployment-route-file-load-failed",
      "legacy_patterns": [
        "Error loading route file:"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_GEN_000",
      "title": "Deployment Server Error",
      "severity": "error",
      "domain": "deployment",
      "category": "general",
      "summary": "The deployment server reported an unexpected error.",
      "causes": [
        "An unhandled exception occurred in the deployment process.",
        "A deployment service dependency returned an unexpected failure.",
        "A deployment request reached an unsupported or inconsistent state."
      ],
      "resolution_steps": [
        "Inspect the deployment server stack trace and request context.",
        "Verify the deployment build, app configuration, and recent server changes.",
        "Retry the failing request after confirming the deployment process is healthy."
      ],
      "help_slug": "deployment-server-error",
      "legacy_patterns": [
        "Unhandled deployment exception",
        "Unhandled deployment rejection"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_NET_010",
      "title": "Deployment Network Request Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "network",
      "summary": "The deployment server failed to complete an outbound HTTP request needed for app execution.",
      "causes": [
        "The upstream endpoint returned an error status.",
        "The deployment host could not reach the upstream service.",
        "The response payload was invalid for the expected flow."
      ],
      "resolution_steps": [
        "Inspect the upstream URL, response status, and payload.",
        "Verify outbound connectivity from the deployment host.",
        "Retry after confirming the upstream service is healthy."
      ],
      "help_slug": "deployment-network-request-failed",
      "legacy_patterns": [
        "HTTP error! status:"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_SEC_010",
      "title": "Deployment Program Access Denied",
      "severity": "error",
      "domain": "deployment",
      "category": "security",
      "summary": "The deployment rejected a program-level request because the target program is invalid or unauthorized.",
      "causes": [
        "The request omitted `prog_id`.",
        "The deployment request referenced a program outside the allowed deployment scope.",
        "The request program id does not exist in the build context."
      ],
      "resolution_steps": [
        "Verify the request includes a valid deployed `prog_id`.",
        "Check the deployment access lists for allowed programs.",
        "Update the deployment scope if the program should be accessible."
      ],
      "help_slug": "deployment-program-access-denied",
      "legacy_patterns": [
        "invalid or missing prog id",
        "prog_id unauthorized"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_SEC_020",
      "title": "Deployment Table Access Denied",
      "severity": "error",
      "domain": "deployment",
      "category": "security",
      "summary": "The deployment rejected a table-level request because the target table is invalid or unauthorized.",
      "causes": [
        "The request omitted `table_id`.",
        "The target table is not exposed to the deployment.",
        "The program context does not reference the requested table."
      ],
      "resolution_steps": [
        "Verify the request includes a valid deployed `table_id`.",
        "Check the deployment access lists for allowed tables.",
        "Ensure the target program actually references the requested table."
      ],
      "help_slug": "deployment-table-access-denied",
      "legacy_patterns": [
        "invalid or missing table id",
        "table_id cannot be authenticate",
        "does not exist in the program context"
      ],
      "related_codes": []
    },
    {
      "code": "DEP_MSG_WRK_010",
      "title": "Deployment Worker Script Failed",
      "severity": "error",
      "domain": "deployment",
      "category": "worker",
      "summary": "The deployment worker failed while running server-side JavaScript.",
      "causes": [
        "The script threw inside the worker VM.",
        "The worker process hit an uncaught exception.",
        "The script depends on unavailable modules or invalid runtime state."
      ],
      "resolution_steps": [
        "Inspect the deployment worker stack trace and script body.",
        "Verify the worker bundle and dependencies are present on the deployment host.",
        "Retry after fixing the server-side script logic or runtime assumptions."
      ],
      "help_slug": "deployment-worker-script-failed",
      "legacy_patterns": [
        "vm error",
        "Failed to execute script.",
        "Asynchronous error caught."
      ],
      "related_codes": []
    },
    {
      "prefix": "CHK_MSG_GEN_",
      "title": "Studio Checker General Validation Error",
      "domain": "checker",
      "category": "general",
      "summary": "The Studio checker found a general validation problem while inspecting a program.",
      "causes": [
        "The checker encountered malformed workflow or unsupported validation input.",
        "The inspected document contains inconsistent or incomplete metadata."
      ],
      "resolution_steps": [
        "Open the referenced program or workflow item in Studio.",
        "Re-save the affected object so Studio rewrites its structure.",
        "If the issue is internal checker traversal, inspect the referenced workflow or UI tree for malformed nodes."
      ],
      "help_slug_base": "studio-checker-general",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_GEN_050",
      "severity": "error",
      "help_slug": "chk-msg-gen-050",
      "family_code": "CHK_MSG_GEN_"
    },
    {
      "prefix": "CHK_MSG_GEN_",
      "title": "Workflow Search Traversal Warning",
      "domain": "checker",
      "category": "general",
      "summary": "The checker could not fully inspect a workflow while searching for program references.",
      "causes": [
        "The workflow contains malformed trigger data.",
        "The checker encountered an unexpected runtime shape during traversal."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow payload for malformed trigger objects.",
        "Re-save the affected program so Studio rewrites its workflow structure.",
        "If the warning persists, inspect imported or hand-edited workflow JSON."
      ],
      "help_slug_base": "studio-checker-general",
      "help_slug": "studio-checker-workflow-search-warning",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_GEN_900",
      "severity": "error",
      "family_code": "CHK_MSG_GEN_"
    },
    {
      "prefix": "CHK_MSG_GEN_",
      "title": "UI Workflow Search Traversal Warning",
      "domain": "checker",
      "category": "general",
      "summary": "The checker could not fully inspect a UI tree while searching for workflow references.",
      "causes": [
        "The UI tree contains malformed nodes or xu-on payloads.",
        "The checker encountered an unexpected UI node structure during traversal."
      ],
      "resolution_steps": [
        "Inspect the component UI tree around xu-on handlers.",
        "Repair malformed UI nodes or event payloads.",
        "Re-save the component after correcting broken UI structure."
      ],
      "help_slug_base": "studio-checker-general",
      "help_slug": "studio-checker-ui-search-warning",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_GEN_902",
      "severity": "error",
      "family_code": "CHK_MSG_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_000",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-000",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_002",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-002",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_004",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-004",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_005",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-005",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_050",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-050",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_051",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-051",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_052",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-052",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_100",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-100",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_102",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-102",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_104",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-104",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_105",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-105",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_106",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-106",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_110",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-110",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_112",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-112",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_114",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-114",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_116",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-116",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_120",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-120",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_122",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-122",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_200",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-200",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_202",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-202",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_204",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-204",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_206",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-206",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_208",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-208",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_210",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-210",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_212",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-212",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_214",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-214",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_216",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-216",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_302",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-302",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_304",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-304",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_306",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-306",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_308",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-308",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_310",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-310",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_312",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-312",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_402",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-402",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_404",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-404",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_406",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-406",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_408",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-408",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_410",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-410",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_412",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-412",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_4120",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-4120",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_4121",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-4121",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_414",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-414",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_415",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-415",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_416",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-416",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_418",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-418",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_419",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-419",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_502",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-502",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_504",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-504",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_506",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-506",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_508",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-508",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_510",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-510",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_512",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-512",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_514",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-514",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_516",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-516",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_518",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-518",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_522",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-522",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_602",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-602",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_604",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-604",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_702",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-702",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_704",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-704",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_705",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-705",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_706",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-706",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_707",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-707",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_708",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-708",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_710",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-710",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_712",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-712",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_713",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-713",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_714",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-714",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_850",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-850",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_852",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-852",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_854",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-854",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_856",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-856",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_858",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-858",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_OBJ_GEN_",
      "title": "Studio Document Structure Validation Error",
      "domain": "checker",
      "category": "document",
      "summary": "The Studio checker found an invalid top-level document structure, property, or collection shape.",
      "causes": [
        "Required document metadata is missing.",
        "An object or array property has the wrong type.",
        "IDs or field definitions are duplicated or malformed."
      ],
      "resolution_steps": [
        "Confirm the document has valid `_id`, `properties`, `studio_meta`, and typed collections.",
        "Fix missing or invalid fields in the document payload.",
        "Re-save or migrate the object from Studio if the JSON was hand-edited or partially imported."
      ],
      "help_slug_base": "studio-checker-document",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_OBJ_GEN_860",
      "severity": "error",
      "help_slug": "chk-msg-obj-gen-860",
      "family_code": "CHK_MSG_OBJ_GEN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-010",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-020",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-030",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_040",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-040",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_100",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-100",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_110",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-110",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_120",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-120",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_130",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-130",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_200",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-200",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_210",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-210",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_220",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-220",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_310",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-310",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_320",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-320",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_410",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-410",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_510",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-510",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_AGN_",
      "title": "AI Agent Validation Error",
      "domain": "checker",
      "category": "ai-agent",
      "summary": "The checker found an invalid AI agent configuration.",
      "causes": [
        "Required AI agent settings or prompts are missing.",
        "The AI agent references invalid dependencies.",
        "Agent metadata is incomplete or malformed."
      ],
      "resolution_steps": [
        "Open the AI agent configuration and verify required fields.",
        "Check linked prompts, tools, and dependencies.",
        "Save the AI agent again after correcting invalid settings."
      ],
      "help_slug_base": "studio-checker-ai-agent",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_AGN_520",
      "severity": "error",
      "help_slug": "chk-msg-prg-agn-520",
      "family_code": "CHK_MSG_PRG_AGN_"
    },
    {
      "prefix": "CHK_MSG_PRG_ART_",
      "title": "Alert Program Validation Error",
      "domain": "checker",
      "category": "alert",
      "summary": "The checker found an invalid alert program configuration.",
      "causes": [
        "Alert display or payload settings are incomplete.",
        "The alert configuration does not match expected runtime fields.",
        "An alert workflow contains missing values."
      ],
      "resolution_steps": [
        "Open the alert object and confirm display mode, message, and log settings.",
        "Fill in missing alert properties.",
        "Save the alert again after fixing invalid fields."
      ],
      "help_slug_base": "studio-checker-alert",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_ART_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-art-010",
      "family_code": "CHK_MSG_PRG_ART_"
    },
    {
      "prefix": "CHK_MSG_PRG_ART_",
      "title": "Alert Program Validation Error",
      "domain": "checker",
      "category": "alert",
      "summary": "The checker found an invalid alert program configuration.",
      "causes": [
        "Alert display or payload settings are incomplete.",
        "The alert configuration does not match expected runtime fields.",
        "An alert workflow contains missing values."
      ],
      "resolution_steps": [
        "Open the alert object and confirm display mode, message, and log settings.",
        "Fill in missing alert properties.",
        "Save the alert again after fixing invalid fields."
      ],
      "help_slug_base": "studio-checker-alert",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_ART_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-art-020",
      "family_code": "CHK_MSG_PRG_ART_"
    },
    {
      "prefix": "CHK_MSG_PRG_ART_",
      "title": "Alert Program Validation Error",
      "domain": "checker",
      "category": "alert",
      "summary": "The checker found an invalid alert program configuration.",
      "causes": [
        "Alert display or payload settings are incomplete.",
        "The alert configuration does not match expected runtime fields.",
        "An alert workflow contains missing values."
      ],
      "resolution_steps": [
        "Open the alert object and confirm display mode, message, and log settings.",
        "Fill in missing alert properties.",
        "Save the alert again after fixing invalid fields."
      ],
      "help_slug_base": "studio-checker-alert",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_ART_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-art-030",
      "family_code": "CHK_MSG_PRG_ART_"
    },
    {
      "prefix": "CHK_MSG_PRG_ART_",
      "title": "Alert Program Validation Error",
      "domain": "checker",
      "category": "alert",
      "summary": "The checker found an invalid alert program configuration.",
      "causes": [
        "Alert display or payload settings are incomplete.",
        "The alert configuration does not match expected runtime fields.",
        "An alert workflow contains missing values."
      ],
      "resolution_steps": [
        "Open the alert object and confirm display mode, message, and log settings.",
        "Fill in missing alert properties.",
        "Save the alert again after fixing invalid fields."
      ],
      "help_slug_base": "studio-checker-alert",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_ART_032",
      "severity": "error",
      "help_slug": "chk-msg-prg-art-032",
      "family_code": "CHK_MSG_PRG_ART_"
    },
    {
      "prefix": "CHK_MSG_PRG_ART_",
      "title": "Alert Program Validation Error",
      "domain": "checker",
      "category": "alert",
      "summary": "The checker found an invalid alert program configuration.",
      "causes": [
        "Alert display or payload settings are incomplete.",
        "The alert configuration does not match expected runtime fields.",
        "An alert workflow contains missing values."
      ],
      "resolution_steps": [
        "Open the alert object and confirm display mode, message, and log settings.",
        "Fill in missing alert properties.",
        "Save the alert again after fixing invalid fields."
      ],
      "help_slug_base": "studio-checker-alert",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_ART_042",
      "severity": "error",
      "help_slug": "chk-msg-prg-art-042",
      "family_code": "CHK_MSG_PRG_ART_"
    },
    {
      "prefix": "CHK_MSG_PRG_ART_",
      "title": "API Output Missing",
      "domain": "checker",
      "category": "api",
      "summary": "An API program is missing `properties.apiOutput`, so `call_project_api` cannot serialize the response correctly at runtime.",
      "causes": [
        "The API doc was created without an output format.",
        "A hand-edited or imported API doc lost its `apiOutput` property."
      ],
      "resolution_steps": [
        "Open the API program in Studio and choose an output format such as `json` or `html`.",
        "Re-save the API doc so Studio writes the missing property back into the payload.",
        "If the API is generated, update the generator to always set `properties.apiOutput`."
      ],
      "help_slug_base": "studio-checker-alert",
      "help_slug": "studio-checker-api-output-missing",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_ART_050",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_ART_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Component Validation Error",
      "domain": "checker",
      "category": "component",
      "summary": "The checker found an invalid component program structure or missing program content.",
      "causes": [
        "The component is missing required UI content.",
        "The component references invalid child structures.",
        "The component metadata does not match its runtime shape."
      ],
      "resolution_steps": [
        "Open the component in Studio and confirm its UI tree is valid.",
        "Repair missing or empty component sections.",
        "Save the component again after fixing its layout or metadata."
      ],
      "help_slug_base": "studio-checker-component",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-com-010",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Component Validation Error",
      "domain": "checker",
      "category": "component",
      "summary": "The checker found an invalid component program structure or missing program content.",
      "causes": [
        "The component is missing required UI content.",
        "The component references invalid child structures.",
        "The component metadata does not match its runtime shape."
      ],
      "resolution_steps": [
        "Open the component in Studio and confirm its UI tree is valid.",
        "Repair missing or empty component sections.",
        "Save the component again after fixing its layout or metadata."
      ],
      "help_slug_base": "studio-checker-component",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-com-020",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Component Validation Error",
      "domain": "checker",
      "category": "component",
      "summary": "The checker found an invalid component program structure or missing program content.",
      "causes": [
        "The component is missing required UI content.",
        "The component references invalid child structures.",
        "The component metadata does not match its runtime shape."
      ],
      "resolution_steps": [
        "Open the component in Studio and confirm its UI tree is valid.",
        "Repair missing or empty component sections.",
        "Save the component again after fixing its layout or metadata."
      ],
      "help_slug_base": "studio-checker-component",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-com-030",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Form Root Layout Warning",
      "domain": "checker",
      "category": "component",
      "summary": "A component with `renderType: form` should start with `xu-single-view` so the runtime uses the expected form layout wrapper.",
      "causes": [
        "The root node was authored as a plain HTML element.",
        "The component was generated with a list/grid shell even though it is marked as a form."
      ],
      "resolution_steps": [
        "Change the first root UI node to `xu-single-view`.",
        "Keep form-style fields and actions nested under that root wrapper.",
        "Re-save the component and rerun the checker."
      ],
      "help_slug_base": "studio-checker-component",
      "help_slug": "studio-checker-form-root-layout-warning",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_040",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "List/Grid Root Layout Warning",
      "domain": "checker",
      "category": "component",
      "summary": "A list or grid component should start with `xu-multi-view` so the runtime can apply the expected repeating-view shell.",
      "causes": [
        "The component was authored as a plain container instead of a multi-view root.",
        "The render type was changed without updating the root tag."
      ],
      "resolution_steps": [
        "Change the first root UI node to `xu-multi-view` for list or grid screens.",
        "Keep record cards, rows, or repeated content inside that root wrapper.",
        "Re-save the component and rerun the checker."
      ],
      "help_slug_base": "studio-checker-component",
      "help_slug": "studio-checker-multiview-root-layout-warning",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_042",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Panel Program Missing",
      "domain": "checker",
      "category": "component",
      "summary": "A `xu-panel` node is missing both a static `program` target and a dynamic `xu-exp:prog` target.",
      "causes": [
        "The panel tag was inserted without wiring its child component reference.",
        "A generator emitted a panel shell before selecting the target component."
      ],
      "resolution_steps": [
        "Set `program=\"component_id\"` on the panel for static routing.",
        "Or set `xu-exp:prog` if the target component is dynamic.",
        "Re-run the checker after the panel target is defined."
      ],
      "help_slug_base": "studio-checker-component",
      "help_slug": "studio-checker-panel-program-missing",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_050",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Panel Program Not Found",
      "domain": "checker",
      "category": "component",
      "summary": "A `xu-panel` references a program id that does not exist in the current app.",
      "causes": [
        "The panel points to a deleted or misspelled component id.",
        "A generator invented a component id instead of using a real Studio doc id."
      ],
      "resolution_steps": [
        "Replace the panel `program` value with an existing component id.",
        "If the child component was renamed or recreated, update the panel reference.",
        "Re-save the component after repairing the panel target."
      ],
      "help_slug_base": "studio-checker-component",
      "help_slug": "studio-checker-panel-program-not-found",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_052",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Panel Target Type Invalid",
      "domain": "checker",
      "category": "component",
      "summary": "A `xu-panel` must target another component doc, not a table, folder, or other program type.",
      "causes": [
        "The panel points to a real doc id, but that doc is not a component.",
        "A generator reused a table or program id where a screen/component id was required."
      ],
      "resolution_steps": [
        "Point the panel to a component doc id.",
        "Create the missing child component first if only data/docs exist today.",
        "Re-save the parent component after fixing the target."
      ],
      "help_slug_base": "studio-checker-component",
      "help_slug": "studio-checker-panel-target-type-invalid",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_054",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_COM_",
      "title": "Panel Parameter Mismatch",
      "domain": "checker",
      "category": "component",
      "summary": "A `xu-panel` passes a static attribute that does not match any declared input parameter on the target component.",
      "causes": [
        "A static panel parameter name is misspelled.",
        "The target component input list changed and the panel attributes were not updated."
      ],
      "resolution_steps": [
        "Compare the panel attribute names to the target component `progParams` with `dir: in`.",
        "Rename the panel attribute or add the missing input parameter on the child component.",
        "Prefer `xu-exp:param_name` only when the target parameter actually exists."
      ],
      "help_slug_base": "studio-checker-component",
      "help_slug": "studio-checker-panel-parameter-mismatch",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_COM_056",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_COM_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-010",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-030",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_032",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-032",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_034",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-034",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_040",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-040",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_042",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-042",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_200",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-200",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_210",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-210",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_220",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-220",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_DSC_",
      "title": "Program Datasource Validation Error",
      "domain": "checker",
      "category": "datasource",
      "summary": "The checker found an invalid datasource definition on a program.",
      "causes": [
        "Datasource type or table reference is missing.",
        "Datasource configuration is incomplete.",
        "The datasource references invalid indexes or filters."
      ],
      "resolution_steps": [
        "Inspect the program datasource block in Studio.",
        "Set a valid datasource type and required table/index references.",
        "Save the program again after fixing datasource settings."
      ],
      "help_slug_base": "studio-checker-datasource",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_DSC_230",
      "severity": "error",
      "help_slug": "chk-msg-prg-dsc-230",
      "family_code": "CHK_MSG_PRG_DSC_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-010",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_018",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-018",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-020",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_022",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-022",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-030",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_035",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-035",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_102",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-102",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EVT_",
      "title": "Program Event Validation Error",
      "domain": "checker",
      "category": "event",
      "summary": "The checker found a missing or invalid event definition in a program.",
      "causes": [
        "Event references are empty or invalid.",
        "Workflow steps refer to missing actions or objects.",
        "An event structure is incomplete."
      ],
      "resolution_steps": [
        "Open the event definition in Studio.",
        "Verify the event name, trigger, and workflow steps.",
        "Repair missing action or object references, then save."
      ],
      "help_slug_base": "studio-checker-event",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EVT_112",
      "severity": "error",
      "help_slug": "chk-msg-prg-evt-112",
      "family_code": "CHK_MSG_PRG_EVT_"
    },
    {
      "prefix": "CHK_MSG_PRG_EXP_",
      "title": "Expression Validation Error",
      "domain": "checker",
      "category": "expression",
      "summary": "The checker found an invalid expression or expression reference.",
      "causes": [
        "An expression references missing values.",
        "Expression syntax is malformed.",
        "The expression is incompatible with the expected field type."
      ],
      "resolution_steps": [
        "Open the expression editor for the referenced field or workflow step.",
        "Validate referenced fields and parameters.",
        "Fix syntax or cast mismatches, then save the program."
      ],
      "help_slug_base": "studio-checker-expression",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EXP_012",
      "severity": "error",
      "help_slug": "chk-msg-prg-exp-012",
      "family_code": "CHK_MSG_PRG_EXP_"
    },
    {
      "prefix": "CHK_MSG_PRG_EXP_",
      "title": "Expression Validation Error",
      "domain": "checker",
      "category": "expression",
      "summary": "The checker found an invalid expression or expression reference.",
      "causes": [
        "An expression references missing values.",
        "Expression syntax is malformed.",
        "The expression is incompatible with the expected field type."
      ],
      "resolution_steps": [
        "Open the expression editor for the referenced field or workflow step.",
        "Validate referenced fields and parameters.",
        "Fix syntax or cast mismatches, then save the program."
      ],
      "help_slug_base": "studio-checker-expression",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EXP_022",
      "severity": "error",
      "help_slug": "chk-msg-prg-exp-022",
      "family_code": "CHK_MSG_PRG_EXP_"
    },
    {
      "prefix": "CHK_MSG_PRG_EXP_",
      "title": "Expression Validation Error",
      "domain": "checker",
      "category": "expression",
      "summary": "The checker found an invalid expression or expression reference.",
      "causes": [
        "An expression references missing values.",
        "Expression syntax is malformed.",
        "The expression is incompatible with the expected field type."
      ],
      "resolution_steps": [
        "Open the expression editor for the referenced field or workflow step.",
        "Validate referenced fields and parameters.",
        "Fix syntax or cast mismatches, then save the program."
      ],
      "help_slug_base": "studio-checker-expression",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EXP_024",
      "severity": "error",
      "help_slug": "chk-msg-prg-exp-024",
      "family_code": "CHK_MSG_PRG_EXP_"
    },
    {
      "prefix": "CHK_MSG_PRG_EXP_",
      "title": "Expression Validation Error",
      "domain": "checker",
      "category": "expression",
      "summary": "The checker found an invalid expression or expression reference.",
      "causes": [
        "An expression references missing values.",
        "Expression syntax is malformed.",
        "The expression is incompatible with the expected field type."
      ],
      "resolution_steps": [
        "Open the expression editor for the referenced field or workflow step.",
        "Validate referenced fields and parameters.",
        "Fix syntax or cast mismatches, then save the program."
      ],
      "help_slug_base": "studio-checker-expression",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EXP_026",
      "severity": "error",
      "help_slug": "chk-msg-prg-exp-026",
      "family_code": "CHK_MSG_PRG_EXP_"
    },
    {
      "prefix": "CHK_MSG_PRG_EXP_",
      "title": "Expression Validation Error",
      "domain": "checker",
      "category": "expression",
      "summary": "The checker found an invalid expression or expression reference.",
      "causes": [
        "An expression references missing values.",
        "Expression syntax is malformed.",
        "The expression is incompatible with the expected field type."
      ],
      "resolution_steps": [
        "Open the expression editor for the referenced field or workflow step.",
        "Validate referenced fields and parameters.",
        "Fix syntax or cast mismatches, then save the program."
      ],
      "help_slug_base": "studio-checker-expression",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_EXP_028",
      "severity": "error",
      "help_slug": "chk-msg-prg-exp-028",
      "family_code": "CHK_MSG_PRG_EXP_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-010",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_012",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-012",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-020",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_022",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-022",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-030",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_040",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-040",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_060",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-060",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_070",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-070",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_130",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-130",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_160",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-160",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_200",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-200",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_210",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-210",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_220",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-220",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_300",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-300",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_310",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-310",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_FLD_",
      "title": "Program Field Validation Error",
      "domain": "checker",
      "category": "fieldset",
      "summary": "The checker found a broken program field definition or datasource-to-field mismatch.",
      "causes": [
        "A field type is invalid for the program.",
        "A table-backed field does not match its datasource.",
        "Field metadata is missing, duplicated, or inconsistent."
      ],
      "resolution_steps": [
        "Inspect the program fieldset in Studio.",
        "Match table-backed fields to the datasource table.",
        "Repair or remove invalid field definitions, then save the program."
      ],
      "help_slug_base": "studio-checker-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_FLD_320",
      "severity": "error",
      "help_slug": "chk-msg-prg-fld-320",
      "family_code": "CHK_MSG_PRG_FLD_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Program UI Validation Error",
      "domain": "checker",
      "category": "ui",
      "summary": "The checker found an invalid UI node, attribute, or UI reference inside a program.",
      "causes": [
        "A UI node is malformed or missing required properties.",
        "A referenced field or UI binding does not exist.",
        "The UI tree contains unsupported shapes or broken references."
      ],
      "resolution_steps": [
        "Inspect the UI tree around the referenced node.",
        "Repair missing `id`, `tagName`, field bindings, or event hooks.",
        "Re-save the component after fixing broken UI references."
      ],
      "help_slug_base": "studio-checker-ui",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-gui-010",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Program UI Validation Error",
      "domain": "checker",
      "category": "ui",
      "summary": "The checker found an invalid UI node, attribute, or UI reference inside a program.",
      "causes": [
        "A UI node is malformed or missing required properties.",
        "A referenced field or UI binding does not exist.",
        "The UI tree contains unsupported shapes or broken references."
      ],
      "resolution_steps": [
        "Inspect the UI tree around the referenced node.",
        "Repair missing `id`, `tagName`, field bindings, or event hooks.",
        "Re-save the component after fixing broken UI references."
      ],
      "help_slug_base": "studio-checker-ui",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-gui-020",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Program UI Validation Error",
      "domain": "checker",
      "category": "ui",
      "summary": "The checker found an invalid UI node, attribute, or UI reference inside a program.",
      "causes": [
        "A UI node is malformed or missing required properties.",
        "A referenced field or UI binding does not exist.",
        "The UI tree contains unsupported shapes or broken references."
      ],
      "resolution_steps": [
        "Inspect the UI tree around the referenced node.",
        "Repair missing `id`, `tagName`, field bindings, or event hooks.",
        "Re-save the component after fixing broken UI references."
      ],
      "help_slug_base": "studio-checker-ui",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_200",
      "severity": "error",
      "help_slug": "chk-msg-prg-gui-200",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Program UI Validation Error",
      "domain": "checker",
      "category": "ui",
      "summary": "The checker found an invalid UI node, attribute, or UI reference inside a program.",
      "causes": [
        "A UI node is malformed or missing required properties.",
        "A referenced field or UI binding does not exist.",
        "The UI tree contains unsupported shapes or broken references."
      ],
      "resolution_steps": [
        "Inspect the UI tree around the referenced node.",
        "Repair missing `id`, `tagName`, field bindings, or event hooks.",
        "Re-save the component after fixing broken UI references."
      ],
      "help_slug_base": "studio-checker-ui",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_250",
      "severity": "error",
      "help_slug": "chk-msg-prg-gui-250",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Teleport Target Missing",
      "domain": "checker",
      "category": "ui",
      "summary": "A `xu-teleport` node must define either `to` or `xu-exp:to` so the runtime knows where to move its rendered children.",
      "causes": [
        "The teleport tag was authored without a destination selector.",
        "A generator emitted a teleport wrapper before choosing its target node."
      ],
      "resolution_steps": [
        "Set a static `to=\"#target\"` selector on the teleport node.",
        "Or use `xu-exp:to` if the destination selector is dynamic.",
        "Re-run the checker after the teleport destination is defined."
      ],
      "help_slug_base": "studio-checker-ui",
      "help_slug": "studio-checker-teleport-target-missing",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_260",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Teleport Selector Not Found",
      "domain": "checker",
      "category": "ui",
      "summary": "A static `xu-teleport` selector does not match any element in the same component tree, so the runtime would fail to mount it.",
      "causes": [
        "The target selector is misspelled or points to a removed node.",
        "The teleport was authored before its destination node was added to the tree."
      ],
      "resolution_steps": [
        "Add or restore a matching target element in the same component tree.",
        "Fix the `to` selector so it matches the real target node.",
        "If the selector is meant to be dynamic, switch to `xu-exp:to`."
      ],
      "help_slug_base": "studio-checker-ui",
      "help_slug": "studio-checker-teleport-selector-not-found",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_262",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Runtime Internal Tag Authored",
      "domain": "checker",
      "category": "ui",
      "summary": "The UI tree contains a runtime-internal `xu-*` tag that should be produced by the engine, not authored directly.",
      "causes": [
        "The component was hand-edited with an internal runtime wrapper.",
        "A generator copied rendered runtime DOM back into the authoring tree."
      ],
      "resolution_steps": [
        "Remove the internal tag from the authoring tree.",
        "Use supported authoring tags such as `xu-single-view`, `xu-multi-view`, `xu-panel`, or `xu-teleport` instead.",
        "Re-save the component after removing runtime-only markup."
      ],
      "help_slug_base": "studio-checker-ui",
      "help_slug": "studio-checker-runtime-internal-tag-authored",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_264",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Unsupported Xu Tag Authored",
      "domain": "checker",
      "category": "ui",
      "summary": "The component contains an authored `xu-*` tag that is not part of the supported authoring allowlist.",
      "causes": [
        "A generator invented a new `xu-*` tag.",
        "Rendered runtime DOM was copied back into authoring JSON.",
        "The tag name is misspelled."
      ],
      "resolution_steps": [
        "Replace the unsupported tag with a supported authoring tag or plain HTML.",
        "Check the runtime docs for the allowed authoring tags.",
        "Re-run the checker after repairing the UI tree."
      ],
      "help_slug_base": "studio-checker-ui",
      "help_slug": "studio-checker-unsupported-xu-tag-authored",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_266",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_GUI_",
      "title": "Empty Xu-on Wrapper",
      "domain": "checker",
      "category": "ui",
      "summary": "A `xu-on:*` handler wrapper is present but carries no executable workflow or event payload.",
      "causes": [
        "The handler was created and left empty.",
        "A generator emitted an empty wrapper shell.",
        "Workflow content was deleted without removing the surrounding handler entry."
      ],
      "resolution_steps": [
        "Add a real workflow or event payload to the wrapper.",
        "Or remove the empty wrapper entry if it is unused.",
        "Re-save the component after cleaning up the event handler array."
      ],
      "help_slug_base": "studio-checker-ui",
      "help_slug": "studio-checker-empty-xu-on-wrapper",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_GUI_268",
      "severity": "error",
      "family_code": "CHK_MSG_PRG_GUI_"
    },
    {
      "prefix": "CHK_MSG_PRG_JVS_",
      "title": "JavaScript Program Validation Error",
      "domain": "checker",
      "category": "javascript",
      "summary": "The checker found an invalid JavaScript program configuration.",
      "causes": [
        "The JavaScript program is missing required content.",
        "The program metadata does not match the expected JavaScript shape."
      ],
      "resolution_steps": [
        "Open the JavaScript program and verify its source and properties.",
        "Repair missing code or metadata.",
        "Save the program again after fixing invalid settings."
      ],
      "help_slug_base": "studio-checker-javascript",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_JVS_012",
      "severity": "error",
      "help_slug": "chk-msg-prg-jvs-012",
      "family_code": "CHK_MSG_PRG_JVS_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_010",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-010",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-020",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_022",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-022",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_030",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-030",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_040",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-040",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_050",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-050",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_080",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-080",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_090",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-090",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_PRM_",
      "title": "Program Parameter Validation Error",
      "domain": "checker",
      "category": "parameter",
      "summary": "The checker found a broken input or output parameter definition.",
      "causes": [
        "Parameter direction or type is invalid.",
        "A parameter references missing fields or unsupported structures.",
        "Parameter metadata is duplicated or incomplete."
      ],
      "resolution_steps": [
        "Inspect the program parameter list.",
        "Repair missing parameter names, directions, or types.",
        "Save the program again after fixing parameter definitions."
      ],
      "help_slug_base": "studio-checker-parameter",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_PRM_100",
      "severity": "error",
      "help_slug": "chk-msg-prg-prm-100",
      "family_code": "CHK_MSG_PRG_PRM_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_008",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-008",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_020",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-020",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_040",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-040",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_050",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-050",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_060",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-060",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_100",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-100",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_110",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-110",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_120",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-120",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_130",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-130",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_310",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-310",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_320",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-320",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_330",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-330",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_334",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-334",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_370",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-370",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_372",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-372",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_374",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-374",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_380",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-380",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_382",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-382",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_384",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-384",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_386",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-386",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_388",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-388",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_389",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-389",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_400",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-400",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_510",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-510",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_512",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-512",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_514",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-514",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_516",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-516",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_520",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-520",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_610",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-610",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_612",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-612",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_614",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-614",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_616",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-616",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_618",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-618",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_800",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-800",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_810",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-810",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_820",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-820",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_PRG_TRG_",
      "title": "Workflow Trigger Validation Error",
      "domain": "checker",
      "category": "workflow",
      "summary": "The checker found an invalid workflow trigger or workflow action definition.",
      "causes": [
        "A trigger references a missing program, action, or method.",
        "Required workflow fields are empty.",
        "The trigger contains an invalid workflow shape."
      ],
      "resolution_steps": [
        "Inspect the referenced workflow step or trigger.",
        "Repair missing program, method, URL, or action references.",
        "Save the program again after fixing workflow configuration."
      ],
      "help_slug_base": "studio-checker-trigger",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_PRG_TRG_900",
      "severity": "error",
      "help_slug": "chk-msg-prg-trg-900",
      "family_code": "CHK_MSG_PRG_TRG_"
    },
    {
      "prefix": "CHK_MSG_RTE_MNU_",
      "title": "Route Menu Validation Error",
      "domain": "checker",
      "category": "route",
      "summary": "The checker found an invalid route or route menu structure.",
      "causes": [
        "A route menu entry is missing required values.",
        "A route references invalid programs or menu metadata."
      ],
      "resolution_steps": [
        "Open the route definition in Studio.",
        "Verify menu entries and linked program references.",
        "Save the route again after fixing missing values."
      ],
      "help_slug_base": "studio-checker-route",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_RTE_MNU_010",
      "severity": "error",
      "help_slug": "chk-msg-rte-mnu-010",
      "family_code": "CHK_MSG_RTE_MNU_"
    },
    {
      "prefix": "CHK_MSG_RTE_MNU_",
      "title": "Route Menu Validation Error",
      "domain": "checker",
      "category": "route",
      "summary": "The checker found an invalid route or route menu structure.",
      "causes": [
        "A route menu entry is missing required values.",
        "A route references invalid programs or menu metadata."
      ],
      "resolution_steps": [
        "Open the route definition in Studio.",
        "Verify menu entries and linked program references.",
        "Save the route again after fixing missing values."
      ],
      "help_slug_base": "studio-checker-route",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_RTE_MNU_020",
      "severity": "error",
      "help_slug": "chk-msg-rte-mnu-020",
      "family_code": "CHK_MSG_RTE_MNU_"
    },
    {
      "prefix": "CHK_MSG_RTE_MNU_",
      "title": "Route Menu Validation Error",
      "domain": "checker",
      "category": "route",
      "summary": "The checker found an invalid route or route menu structure.",
      "causes": [
        "A route menu entry is missing required values.",
        "A route references invalid programs or menu metadata."
      ],
      "resolution_steps": [
        "Open the route definition in Studio.",
        "Verify menu entries and linked program references.",
        "Save the route again after fixing missing values."
      ],
      "help_slug_base": "studio-checker-route",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_RTE_MNU_030",
      "severity": "error",
      "help_slug": "chk-msg-rte-mnu-030",
      "family_code": "CHK_MSG_RTE_MNU_"
    },
    {
      "prefix": "CHK_MSG_TBL_FLD_",
      "title": "Table Field Validation Error",
      "domain": "checker",
      "category": "table-field",
      "summary": "The checker found an invalid field definition inside a table.",
      "causes": [
        "A field is duplicated, malformed, or has an invalid type.",
        "A field references a missing model or mask definition.",
        "A field is unused or structurally inconsistent."
      ],
      "resolution_steps": [
        "Inspect the table field list for duplicates and missing properties.",
        "Match field types and masks to valid table definitions.",
        "Remove or repair broken fields, then save the table."
      ],
      "help_slug_base": "studio-checker-table-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_FLD_012",
      "severity": "error",
      "help_slug": "chk-msg-tbl-fld-012",
      "family_code": "CHK_MSG_TBL_FLD_"
    },
    {
      "prefix": "CHK_MSG_TBL_FLD_",
      "title": "Table Field Validation Error",
      "domain": "checker",
      "category": "table-field",
      "summary": "The checker found an invalid field definition inside a table.",
      "causes": [
        "A field is duplicated, malformed, or has an invalid type.",
        "A field references a missing model or mask definition.",
        "A field is unused or structurally inconsistent."
      ],
      "resolution_steps": [
        "Inspect the table field list for duplicates and missing properties.",
        "Match field types and masks to valid table definitions.",
        "Remove or repair broken fields, then save the table."
      ],
      "help_slug_base": "studio-checker-table-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_FLD_020",
      "severity": "error",
      "help_slug": "chk-msg-tbl-fld-020",
      "family_code": "CHK_MSG_TBL_FLD_"
    },
    {
      "prefix": "CHK_MSG_TBL_FLD_",
      "title": "Table Field Validation Error",
      "domain": "checker",
      "category": "table-field",
      "summary": "The checker found an invalid field definition inside a table.",
      "causes": [
        "A field is duplicated, malformed, or has an invalid type.",
        "A field references a missing model or mask definition.",
        "A field is unused or structurally inconsistent."
      ],
      "resolution_steps": [
        "Inspect the table field list for duplicates and missing properties.",
        "Match field types and masks to valid table definitions.",
        "Remove or repair broken fields, then save the table."
      ],
      "help_slug_base": "studio-checker-table-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_FLD_022",
      "severity": "error",
      "help_slug": "chk-msg-tbl-fld-022",
      "family_code": "CHK_MSG_TBL_FLD_"
    },
    {
      "prefix": "CHK_MSG_TBL_FLD_",
      "title": "Table Field Validation Error",
      "domain": "checker",
      "category": "table-field",
      "summary": "The checker found an invalid field definition inside a table.",
      "causes": [
        "A field is duplicated, malformed, or has an invalid type.",
        "A field references a missing model or mask definition.",
        "A field is unused or structurally inconsistent."
      ],
      "resolution_steps": [
        "Inspect the table field list for duplicates and missing properties.",
        "Match field types and masks to valid table definitions.",
        "Remove or repair broken fields, then save the table."
      ],
      "help_slug_base": "studio-checker-table-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_FLD_090",
      "severity": "error",
      "help_slug": "chk-msg-tbl-fld-090",
      "family_code": "CHK_MSG_TBL_FLD_"
    },
    {
      "prefix": "CHK_MSG_TBL_FLD_",
      "title": "Table Field Validation Error",
      "domain": "checker",
      "category": "table-field",
      "summary": "The checker found an invalid field definition inside a table.",
      "causes": [
        "A field is duplicated, malformed, or has an invalid type.",
        "A field references a missing model or mask definition.",
        "A field is unused or structurally inconsistent."
      ],
      "resolution_steps": [
        "Inspect the table field list for duplicates and missing properties.",
        "Match field types and masks to valid table definitions.",
        "Remove or repair broken fields, then save the table."
      ],
      "help_slug_base": "studio-checker-table-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_FLD_100",
      "severity": "error",
      "help_slug": "chk-msg-tbl-fld-100",
      "family_code": "CHK_MSG_TBL_FLD_"
    },
    {
      "prefix": "CHK_MSG_TBL_FLD_",
      "title": "Table Field Validation Error",
      "domain": "checker",
      "category": "table-field",
      "summary": "The checker found an invalid field definition inside a table.",
      "causes": [
        "A field is duplicated, malformed, or has an invalid type.",
        "A field references a missing model or mask definition.",
        "A field is unused or structurally inconsistent."
      ],
      "resolution_steps": [
        "Inspect the table field list for duplicates and missing properties.",
        "Match field types and masks to valid table definitions.",
        "Remove or repair broken fields, then save the table."
      ],
      "help_slug_base": "studio-checker-table-field",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_FLD_200",
      "severity": "error",
      "help_slug": "chk-msg-tbl-fld-200",
      "family_code": "CHK_MSG_TBL_FLD_"
    },
    {
      "prefix": "CHK_MSG_TBL_GEN_",
      "title": "Table Validation Error",
      "domain": "checker",
      "category": "table",
      "summary": "The checker found a structural problem in a table definition.",
      "causes": [
        "The table is empty or missing required sections.",
        "The table is not valid for runtime use.",
        "Table metadata or structure was partially deleted or corrupted."
      ],
      "resolution_steps": [
        "Open the table in Studio and verify fields and indexes exist.",
        "Recreate missing table metadata if the object was imported manually.",
        "Save the table again after fixing required properties."
      ],
      "help_slug_base": "studio-checker-table",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_GEN_0020",
      "severity": "error",
      "help_slug": "chk-msg-tbl-gen-0020",
      "family_code": "CHK_MSG_TBL_GEN_"
    },
    {
      "prefix": "CHK_MSG_TBL_GEN_",
      "title": "Table Validation Error",
      "domain": "checker",
      "category": "table",
      "summary": "The checker found a structural problem in a table definition.",
      "causes": [
        "The table is empty or missing required sections.",
        "The table is not valid for runtime use.",
        "Table metadata or structure was partially deleted or corrupted."
      ],
      "resolution_steps": [
        "Open the table in Studio and verify fields and indexes exist.",
        "Recreate missing table metadata if the object was imported manually.",
        "Save the table again after fixing required properties."
      ],
      "help_slug_base": "studio-checker-table",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_GEN_010",
      "severity": "error",
      "help_slug": "chk-msg-tbl-gen-010",
      "family_code": "CHK_MSG_TBL_GEN_"
    },
    {
      "prefix": "CHK_MSG_TBL_GEN_",
      "title": "Table Validation Error",
      "domain": "checker",
      "category": "table",
      "summary": "The checker found a structural problem in a table definition.",
      "causes": [
        "The table is empty or missing required sections.",
        "The table is not valid for runtime use.",
        "Table metadata or structure was partially deleted or corrupted."
      ],
      "resolution_steps": [
        "Open the table in Studio and verify fields and indexes exist.",
        "Recreate missing table metadata if the object was imported manually.",
        "Save the table again after fixing required properties."
      ],
      "help_slug_base": "studio-checker-table",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_GEN_030",
      "severity": "error",
      "help_slug": "chk-msg-tbl-gen-030",
      "family_code": "CHK_MSG_TBL_GEN_"
    },
    {
      "prefix": "CHK_MSG_TBL_IDX_",
      "title": "Table Index Validation Error",
      "domain": "checker",
      "category": "table-index",
      "summary": "The checker found an invalid table index configuration.",
      "causes": [
        "The index is empty or has invalid keys.",
        "The index name is malformed.",
        "The index references fields that do not exist in the table."
      ],
      "resolution_steps": [
        "Open the table indexes section and verify each index has valid keys.",
        "Rename malformed indexes and remove invalid keys.",
        "Ensure every index field exists in the table field repository."
      ],
      "help_slug_base": "studio-checker-table-index",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_IDX_040",
      "severity": "error",
      "help_slug": "chk-msg-tbl-idx-040",
      "family_code": "CHK_MSG_TBL_IDX_"
    },
    {
      "prefix": "CHK_MSG_TBL_IDX_",
      "title": "Table Index Validation Error",
      "domain": "checker",
      "category": "table-index",
      "summary": "The checker found an invalid table index configuration.",
      "causes": [
        "The index is empty or has invalid keys.",
        "The index name is malformed.",
        "The index references fields that do not exist in the table."
      ],
      "resolution_steps": [
        "Open the table indexes section and verify each index has valid keys.",
        "Rename malformed indexes and remove invalid keys.",
        "Ensure every index field exists in the table field repository."
      ],
      "help_slug_base": "studio-checker-table-index",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_IDX_050",
      "severity": "error",
      "help_slug": "chk-msg-tbl-idx-050",
      "family_code": "CHK_MSG_TBL_IDX_"
    },
    {
      "prefix": "CHK_MSG_TBL_IDX_",
      "title": "Table Index Validation Error",
      "domain": "checker",
      "category": "table-index",
      "summary": "The checker found an invalid table index configuration.",
      "causes": [
        "The index is empty or has invalid keys.",
        "The index name is malformed.",
        "The index references fields that do not exist in the table."
      ],
      "resolution_steps": [
        "Open the table indexes section and verify each index has valid keys.",
        "Rename malformed indexes and remove invalid keys.",
        "Ensure every index field exists in the table field repository."
      ],
      "help_slug_base": "studio-checker-table-index",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_IDX_060",
      "severity": "error",
      "help_slug": "chk-msg-tbl-idx-060",
      "family_code": "CHK_MSG_TBL_IDX_"
    },
    {
      "prefix": "CHK_MSG_TBL_IDX_",
      "title": "Table Index Validation Error",
      "domain": "checker",
      "category": "table-index",
      "summary": "The checker found an invalid table index configuration.",
      "causes": [
        "The index is empty or has invalid keys.",
        "The index name is malformed.",
        "The index references fields that do not exist in the table."
      ],
      "resolution_steps": [
        "Open the table indexes section and verify each index has valid keys.",
        "Rename malformed indexes and remove invalid keys.",
        "Ensure every index field exists in the table field repository."
      ],
      "help_slug_base": "studio-checker-table-index",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_IDX_070",
      "severity": "error",
      "help_slug": "chk-msg-tbl-idx-070",
      "family_code": "CHK_MSG_TBL_IDX_"
    },
    {
      "prefix": "CHK_MSG_TBL_IDX_",
      "title": "Table Index Validation Error",
      "domain": "checker",
      "category": "table-index",
      "summary": "The checker found an invalid table index configuration.",
      "causes": [
        "The index is empty or has invalid keys.",
        "The index name is malformed.",
        "The index references fields that do not exist in the table."
      ],
      "resolution_steps": [
        "Open the table indexes section and verify each index has valid keys.",
        "Rename malformed indexes and remove invalid keys.",
        "Ensure every index field exists in the table field repository."
      ],
      "help_slug_base": "studio-checker-table-index",
      "legacy_patterns": [],
      "related_codes": [],
      "code": "CHK_MSG_TBL_IDX_080",
      "severity": "error",
      "help_slug": "chk-msg-tbl-idx-080",
      "family_code": "CHK_MSG_TBL_IDX_"
    }
  ]
}
