changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "astronomical_twilight_begin": {
+ "type": "string"
+ },
+ "astronomical_twilight_end": {
+ "type": "string"
+ },
+ "civil_twilight_begin": {
+ "type": "string"
+ },
+ "civil_twilight_end": {
+ "type": "string"
+ },
+ "date": {
+ "type": "string"
+ },
+ "day_length_seconds": {
+ "type": "number"
+ },
+ "location": {
+ "type": "string"
+ },
+ "nautical_twilight_begin": {
+ "type": "string"
+ },
+ "nautical_twilight_end": {
+ "type": "string"
+ },
+ "next_solstice_or_equinox": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "solar_noon": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ },
+ "sunrise": {
+ "type": "string"
+ },
+ "sunset": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "location",
+ "sunrise",
+ "sunset",
+ "solar_noon",
+ "day_length_seconds",
+ "civil_twilight_begin",
+ "civil_twilight_end",
+ "nautical_twilight_begin",
+ "nautical_twilight_end",
+ "astronomical_twilight_begin",
+ "astronomical_twilight_end",
+ "source"
+ ],
+ "type": "object"
+}