changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "close_approaches": {
+ "description": "Array of near-Earth asteroid close approach records",
+ "items": {
+ "properties": {
+ "date": {
+ "description": "Calendar date of the close approach",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "designation": {
+ "description": "Asteroid designation/name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "distance_au": {
+ "description": "Distance at close approach in AU",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "distance_min_au": {
+ "description": "Minimum distance in AU",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "h_magnitude": {
+ "description": "Absolute magnitude (brightness)",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "jd_time": {
+ "description": "Julian date of the close approach",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "orbit_id": {
+ "description": "Orbit identification number",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "velocity_inf_km_s": {
+ "description": "Infinity velocity in km/s",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "velocity_rel_km_s": {
+ "description": "Relative velocity in km/s",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Total number of close approach records returned",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "count",
+ "close_approaches"
+ ],
+ "type": "object"
+}