changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "datetime": {
+ "type": "string"
+ },
+ "parallels": {
+ "items": {
+ "properties": {
+ "dec1": {
+ "type": "number"
+ },
+ "dec2": {
+ "type": "number"
+ },
+ "orb": {
+ "type": "number"
+ },
+ "planet1": {
+ "type": "string"
+ },
+ "planet2": {
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "parallel",
+ "contraparallel"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "planet1",
+ "planet2",
+ "type",
+ "orb",
+ "dec1",
+ "dec2"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "planets": {
+ "items": {
+ "properties": {
+ "declination": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ },
+ "rightAscension": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "declination",
+ "rightAscension"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "datetime",
+ "planets",
+ "parallels"
+ ],
+ "type": "object"
+}