changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "aspectTable": {
+ "items": {
+ "properties": {
+ "aspects": {
+ "items": {
+ "properties": {
+ "aspectType": {
+ "type": "string"
+ },
+ "planet": {
+ "type": "string"
+ },
+ "strength": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "planet",
+ "aspectType",
+ "strength"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "planet": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "planet",
+ "aspects"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "aspects": {
+ "items": {
+ "properties": {
+ "aspectType": {
+ "enum": [
+ "conjunction",
+ "7th",
+ "4th",
+ "8th",
+ "5th",
+ "9th",
+ "3rd",
+ "10th"
+ ],
+ "type": "string"
+ },
+ "aspectedPlanet": {
+ "type": "string"
+ },
+ "aspectingPlanet": {
+ "type": "string"
+ },
+ "orb": {
+ "type": "number"
+ },
+ "strength": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "aspectingPlanet",
+ "aspectedPlanet",
+ "aspectType",
+ "strength",
+ "orb"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "datetime": {
+ "type": "string"
+ },
+ "mutualAspects": {
+ "items": {
+ "properties": {
+ "aspectType": {
+ "type": "string"
+ },
+ "planet1": {
+ "type": "string"
+ },
+ "planet2": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "planet1",
+ "planet2",
+ "aspectType"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "planets": {
+ "items": {
+ "properties": {
+ "longitude": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ },
+ "sign": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "longitude",
+ "sign"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "datetime",
+ "planets",
+ "aspects",
+ "aspectTable",
+ "mutualAspects"
+ ],
+ "type": "object"
+}