log5424
    Preparing search index...

    Interface StructuredDataElement

    A single structured data element.

    sdId becomes the SD-ID and the remaining properties become PARAM-NAME / PARAM-VALUE pairs. If sdId is omitted, message generation falls back to defaultSdId and then appName. If params is provided, it is used as the parameter source instead of the remaining top-level properties.

    Example: { sdId: "meta@12345", method: "GET", path: "/users" } serializes to [meta@12345 method="GET" path="/users"]

    interface StructuredDataElement {
        params?: Record<string, unknown>;
        sdId?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    params?: Record<string, unknown>
    sdId?: string