OBJECT

TimeZoneAbbreviation

Information about a time zone abbreviation or variant.

link GraphQL Schema definition

1type TimeZoneAbbreviation {
2
3# The abbreviation, such as "PST" or "UTC"
4name: String!
5
6# The offset from UTC in string form, such as `-08:00` for `PST`.
7offset: String
8
9# The offset from UTC in minutes, such as `-480` for `PST`.
10offsetMinutes: Int
11
12}