changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "date": {
+ "description": "Date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "dawn": {
+ "description": "Dawn time",
+ "type": "string"
+ },
+ "day_length": {
+ "description": "Duration of daylight",
+ "type": "string"
+ },
+ "dusk": {
+ "description": "Dusk time",
+ "type": "string"
+ },
+ "first_light": {
+ "description": "First light time",
+ "type": "string"
+ },
+ "golden_hour": {
+ "description": "Golden hour time",
+ "type": "string"
+ },
+ "last_light": {
+ "description": "Last light time",
+ "type": "string"
+ },
+ "lat": {
+ "description": "Latitude of the location",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Longitude of the location",
+ "type": "number"
+ },
+ "solar_noon": {
+ "description": "Solar noon time",
+ "type": "string"
+ },
+ "sunrise": {
+ "description": "Sunrise time",
+ "type": "string"
+ },
+ "sunset": {
+ "description": "Sunset time",
+ "type": "string"
+ },
+ "timezone": {
+ "description": "Timezone identifier",
+ "type": "string"
+ },
+ "utc_offset": {
+ "description": "UTC offset in hours",
+ "type": "number"
+ }
+ },
+ "required": [
+ "lat",
+ "lng",
+ "date",
+ "sunrise",
+ "sunset",
+ "first_light",
+ "last_light",
+ "dawn",
+ "dusk",
+ "solar_noon",
+ "golden_hour",
+ "day_length",
+ "timezone",
+ "utc_offset"
+ ],
+ "type": "object"
+}