changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "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"
+}