changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "darkness": {
+ "additionalProperties": false,
+ "properties": {
+ "astronomical_twilight_begin": {
+ "type": "string"
+ },
+ "astronomical_twilight_end": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "astronomical_twilight_end",
+ "astronomical_twilight_begin",
+ "note"
+ ],
+ "type": "object"
+ },
+ "date": {
+ "type": "string"
+ },
+ "location": {
+ "type": "string"
+ },
+ "milky_way": {
+ "additionalProperties": false,
+ "properties": {
+ "note": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "note"
+ ],
+ "type": "object"
+ },
+ "moon": {
+ "additionalProperties": false,
+ "properties": {
+ "emoji": {
+ "type": "string"
+ },
+ "illumination_pct": {
+ "type": "number"
+ },
+ "interference_rating": {
+ "type": "string"
+ },
+ "moon_age_days": {
+ "type": "number"
+ },
+ "note": {
+ "type": "string"
+ },
+ "phase": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "phase",
+ "emoji",
+ "illumination_pct",
+ "moon_age_days",
+ "interference_rating",
+ "note"
+ ],
+ "type": "object"
+ },
+ "source": {
+ "type": "string"
+ },
+ "top_sites": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "why": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "why"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "date",
+ "location",
+ "darkness",
+ "moon",
+ "milky_way",
+ "top_sites",
+ "source"
+ ],
+ "type": "object"
+}