TlvTimeZone: ObjectSchema<{
    name: OptionalFieldType<string>;
    offset: FieldType<number>;
    validAt: FieldType<number | bigint>;
}> = ...

Type declaration

  • name: OptionalFieldType<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: FieldType<number>

    The time zone offset from UTC in seconds.

    MatterSpecification.v13.Core § 11.17.6.6.1

  • validAt: FieldType<number | bigint>

    The UTC time when the offset shall be applied.

    MatterSpecification.v13.Core § 11.17.6.6.2

MatterSpecification.v13.Core § 11.17.6.6