action pocketsmith_get_time_zones { label: "List time zones" description: "Lists time zones." provider: pocketsmith method: GET path: "/time_zones" encoding: json output: { type: "array" items: { type: "object" properties: { abbreviation: { type: "string" description: "The abbreviation of the time zone." } formatted_name: { type: "string" description: "The formatted name of the time zone." } formatted_offset: { type: "string" description: "The formatted offset of the time zone." } identifier: { type: "string" description: "The tz database name of the time zone." } name: { type: "string" description: "The name of the time zone." } utc_offset: { type: "integer" description: "The time zone's UTC offset in seconds." } } } } }