Interface WebMapWarning

interface WebMapWarning {
    code: string;
    context?: Record<string, unknown>;
    message: string;
    path: string;
}

Properties

code: string

Machine-readable warning code (e.g. "unsupported-renderer").

context?: Record<string, unknown>

Optional additional context.

message: string

Human-readable description.

path: string

JSON-path-like location within the input (e.g. "operationalLayers[2].layerDefinition.drawingInfo.renderer").