MatterSpecification.v13.Core § 11.17.6.6

interface TimeZone {
    name?: string;
    offset: number;
    validAt: number | bigint;
}

Hierarchy (view full)

Properties

Properties

name?: string

The time zone name SHOULD provide a human-readable time zone name and it SHOULD use the country/city format specified by the IANA Time Zone Database. The Name field may be used for display. If the node supports a TimeZoneDatabase it may use the Name field to set its own DST offsets if it has database information for the supplied time zone Name and the given Offset matches.

MatterSpecification.v13.Core § 11.17.6.6.3

offset: number

The time zone offset from UTC in seconds.

MatterSpecification.v13.Core § 11.17.6.6.1

validAt: number | bigint

The UTC time when the offset shall be applied.

MatterSpecification.v13.Core § 11.17.6.6.2