Content interface

interface IContent {
    cN?: string;
    id?: string;
    [name: string]:
        | string
        | number
        | boolean
        | string[]
        | number[]
        | boolean[]
        | object
        | undefined;
}

Indexable

  • [name: string]:
        | string
        | number
        | boolean
        | string[]
        | number[]
        | boolean[]
        | object
        | undefined

    User specified custom content properties

Properties

Properties

cN?: string

Friendly name (Content Name) of the content to be used reporting/visualization purposes

id?: string

Unique identifier (friendly names allowed) of the content (Content Id) as designated by the content provider. The name should be unique per contentSource such that the two make up the compound key and such that the contentId can be looked up in the contentSource for additional metadata.