This indicates a channel in a channel lineup.

While the major and minor numbers in the ChannelInfoStruct support use of ATSC channel format, a lineup may use other formats which can map into these numeric values.

MatterSpecification.v13.Cluster § 6.6.5.5

interface ChannelInfo {
    affiliateCallSign?: string;
    callSign?: string;
    identifier?: string;
    majorNumber: number;
    minorNumber: number;
    name?: string;
    type?: Channel.ChannelType;
}

Hierarchy (view full)

Properties

affiliateCallSign?: string

This field shall indicate the local affiliate call sign, such as "KCTS". This field is optional, but

SHOULD be provided when known.

MatterSpecification.v13.Cluster § 6.6.5.5.5

callSign?: string

This field shall indicate the call sign of the channel, such as "PBS". This field is optional, but SHOULD be provided when known.

MatterSpecification.v13.Cluster § 6.6.5.5.4

identifier?: string

This shall indicate the unique identifier for a specific channel. This field is optional, but SHOULD be provided when MajorNumber and MinorNumber are not available.

MatterSpecification.v13.Cluster § 6.6.5.5.6

majorNumber: number

This field shall indicate the channel major number value (for example, using ATSC format). When the channel number is expressed as a string, such as "13.1" or "256", the major number would be 13 or 256, respectively. This field is required but shall be set to 0 for channels such as over-the-top channels that are not represented by a major or minor number.

MatterSpecification.v13.Cluster § 6.6.5.5.1

minorNumber: number

This field shall indicate the channel minor number value (for example, using ATSC format). When the channel number is expressed as a string, such as "13.1" or "256", the minor number would be 1 or 0, respectively. This field is required but shall be set to 0 for channels such as over-the-top channels that are not represented by a major or minor number.

MatterSpecification.v13.Cluster § 6.6.5.5.2

name?: string

This field shall indicate the marketing name for the channel, such as “The CW" or "Comedy Central". This field is optional, but SHOULD be provided when known.

MatterSpecification.v13.Cluster § 6.6.5.5.3

This shall indicate the type or grouping of a specific channel. This field is optional, but SHOULD be provided when known.

MatterSpecification.v13.Cluster § 6.6.5.5.7