Interface DescriptorType

A generic descriptor type that defines additional information about a content or component, specified by an ID, a scheme, and an optional value.

interface DescriptorType {
    id?: string;
    schemeIdUri: string;
    value?: string;
}

Hierarchy (view full)

Properties

id?: string

An optional unique identifier for the descriptor.

schemeIdUri: string

The URI identifying the scheme or namespace of the descriptor.

value?: string

An optional value associated with the descriptor, whose interpretation depends on the scheme.