edgeport - v1.0.3
    Preparing search index...

    Interface StructuredDataElement

    One RFC 5424 structured-data element: an SD-ID plus its parameters.

    Renders as [SD-ID NAME="VALUE" ...]. Param values are escaped per RFC 5424 (the characters ", \, and ] are backslash-escaped). The SD-ID and param names are written verbatim, so keep them to the RFC's restricted character set.

    1.0.0

    const sd = { id: 'exampleSDID@32473', params: { iut: '3', eventID: '1011' } };
    
    interface StructuredDataElement {
        id: string;
        params: Record<string, string>;
    }
    Index
    id: string

    The SD-ID, e.g. 'exampleSDID@32473'.

    params: Record<string, string>

    Parameter name/value pairs; values are escaped on render.