changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "location": {
+ "type": "string"
+ },
+ "next_7_days": {
+ "items": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source": {
+ "type": "string"
+ },
+ "today": {
+ "additionalProperties": false,
+ "properties": {
+ "date": {
+ "type": "string"
+ },
+ "emoji": {
+ "type": "string"
+ },
+ "illumination_pct": {
+ "type": "number"
+ },
+ "moon_age_days": {
+ "type": "number"
+ },
+ "phase": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "phase",
+ "emoji",
+ "illumination_pct",
+ "moon_age_days"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "location",
+ "today",
+ "next_7_days",
+ "source"
+ ],
+ "type": "object"
+}