changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "element_count": {
+ "description": "Total number of near-Earth objects in the date range",
+ "type": "integer"
+ },
+ "near_earth_objects": {
+ "description": "Array of near-Earth objects with close approach data",
+ "items": {
+ "properties": {
+ "close_approaches": {
+ "description": "Array of close approach data",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Close approach date",
+ "type": "string"
+ },
+ "miss_distance_au": {
+ "description": "Miss distance in AU",
+ "type": "number"
+ },
+ "miss_distance_km": {
+ "description": "Miss distance in kilometers",
+ "type": "number"
+ },
+ "orbiting_body": {
+ "description": "Body being orbited (e.g., Earth)",
+ "type": "string"
+ },
+ "velocity_km_h": {
+ "description": "Relative velocity in km/h",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "date": {
+ "description": "Date of the approach event",
+ "type": "string"
+ },
+ "diameter_km_max": {
+ "description": "Maximum estimated diameter in kilometers",
+ "type": "number"
+ },
+ "diameter_km_min": {
+ "description": "Minimum estimated diameter in kilometers",
+ "type": "number"
+ },
+ "id": {
+ "description": "NASA JPL object ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Name/designation of the asteroid",
+ "type": "string"
+ },
+ "potentially_hazardous": {
+ "description": "Whether the object is potentially hazardous",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "element_count",
+ "near_earth_objects"
+ ],
+ "type": "object"
+}