Interface DataFieldWithUrl

A piece of data that allows navigating to other information on the Web

It should be rendered as a hyperlink

interface DataFieldWithUrl {
    criticality?: CriticalityType;
    criticalityRepresentation?: CriticalityRepresentationType;
    iconUrl?: URL;
    label?: string;
    url: URL;
    urlContentType: any;
    value: PrimitiveType;
}

Hierarchy

Properties

criticality?: CriticalityType

Criticality of the data field value

criticalityRepresentation?: CriticalityRepresentationType

Decides if criticality is visualized in addition by means of an icon

iconUrl?: URL

Optional icon

label?: string

A short, human-readable text suitable for labels and captions in UIs

url: URL

Target of the hyperlink

urlContentType: any

Media type of the hyperlink target, e.g. video/mp4

The data field's value

Generated using TypeDoc