Lime Web Components API Documentation - v7.2.0
    Preparing search index...

    Interface ProblemMetadataPropertyAlpha

    A label/value property a provider contributes to the problem detail dialog's metadata section, rendered by the platform alongside its standard properties (severity, status, created).

    When type is omitted the value is rendered as plain text and should be a pre-formatted display string. When type is set, the platform formats the raw value (e.g. a 'time' property takes a raw ISO date string and renders it as a localized date), so pass the raw value, not a pre-formatted one.

    // Typed: pass the raw value, platform formats it.
    const property: ProblemMetadataProperty = {
    label: 'Email date',
    value: '2026-06-17T23:52:00Z',
    type: 'time',
    };
    interface ProblemMetadataProperty {
        label: string;
        type?: PropertyType;
        value: string;
    }
    Index

    Properties

    Properties

    label: string

    Human-readable label for the property (e.g. 'Email date').

    Optional data type controlling how the value is rendered. When omitted, the value is rendered as plain text.

    value: string

    The property value. A pre-formatted display string when type is omitted, or the raw value (e.g. an ISO date string) when type is set.