changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "birthData": {
+ "properties": {
+ "date": {
+ "format": "date",
+ "type": "string"
+ },
+ "latitude": {
+ "default": 0,
+ "maximum": 90,
+ "minimum": -90,
+ "type": "number"
+ },
+ "longitude": {
+ "default": 0,
+ "maximum": 180,
+ "minimum": -180,
+ "type": "number"
+ },
+ "time": {
+ "format": "time",
+ "type": "string"
+ },
+ "timezone": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "date",
+ "time",
+ "timezone"
+ ],
+ "type": "object"
+ },
+ "count": {
+ "type": "number"
+ },
+ "endDate": {
+ "type": "string"
+ },
+ "events": {
+ "items": {
+ "properties": {
+ "aspect": {
+ "type": "string"
+ },
+ "body": {
+ "type": "string"
+ },
+ "date": {
+ "type": "string"
+ },
+ "datetime": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "domain": {
+ "enum": [
+ "western",
+ "vedic",
+ "biorhythm"
+ ],
+ "type": "string"
+ },
+ "kind": {
+ "enum": [
+ "penumbral",
+ "partial",
+ "annular",
+ "total"
+ ],
+ "type": "string"
+ },
+ "obscuration": {
+ "type": "number"
+ },
+ "orb": {
+ "type": "number"
+ },
+ "phase": {
+ "enum": [
+ "new-moon",
+ "full-moon"
+ ],
+ "type": "string"
+ },
+ "significance": {
+ "type": "number"
+ },
+ "station": {
+ "enum": [
+ "retrograde",
+ "direct"
+ ],
+ "type": "string"
+ },
+ "target": {
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "transit-aspect",
+ "sign-ingress",
+ "retrograde-station",
+ "eclipse",
+ "lunar-phase",
+ "dasha-change",
+ "critical-day"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "date",
+ "datetime",
+ "domain",
+ "type",
+ "body",
+ "description",
+ "significance"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "startDate": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "birthData",
+ "startDate",
+ "endDate",
+ "count",
+ "events"
+ ],
+ "type": "object"
+}