changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "With an event or date: the countdown fields. With no arguments: only the events list.",
+ "properties": {
+ "days": {
+ "type": "integer"
+ },
+ "events": {
+ "description": "Known events (only when called with no arguments).",
+ "items": {
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "hours": {
+ "type": "integer"
+ },
+ "human": {
+ "description": "e.g. \"in 12 days, 5 hours\".",
+ "type": "string"
+ },
+ "is_past": {
+ "type": "boolean"
+ },
+ "minutes": {
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "target": {
+ "description": "One instant described in one IANA time zone.",
+ "properties": {
+ "abbreviation": {
+ "description": "Zone abbreviation at that instant, e.g. \"BST\".",
+ "type": "string"
+ },
+ "epoch_millis": {
+ "description": "Unix time in milliseconds.",
+ "type": "integer"
+ },
+ "epoch_seconds": {
+ "description": "Unix time in seconds.",
+ "type": "integer"
+ },
+ "human": {
+ "description": "Readable sentence with weekday, date, time and zone.",
+ "type": "string"
+ },
+ "is_dst": {
+ "description": "Whether daylight-saving time is in effect.",
+ "type": "boolean"
+ },
+ "iso": {
+ "description": "ISO 8601 with the zone offset.",
+ "type": "string"
+ },
+ "offset": {
+ "description": "UTC offset, e.g. \"+09:00\".",
+ "type": "string"
+ },
+ "offset_minutes": {
+ "description": "UTC offset in minutes.",
+ "type": "integer"
+ },
+ "rfc2822": {
+ "description": "RFC 2822 date string.",
+ "type": "string"
+ },
+ "timezone": {
+ "description": "IANA zone name.",
+ "type": "string"
+ },
+ "utc_iso": {
+ "description": "ISO 8601 in UTC (Z).",
+ "type": "string"
+ },
+ "weekday": {
+ "description": "Full weekday name in English.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "epoch_seconds",
+ "epoch_millis",
+ "iso",
+ "utc_iso",
+ "timezone",
+ "offset",
+ "offset_minutes",
+ "abbreviation",
+ "is_dst",
+ "weekday",
+ "rfc2822",
+ "human"
+ ],
+ "type": "object"
+ },
+ "total_seconds": {
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}