changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of fireball events returned",
+ "type": "integer"
+ },
+ "fireballs": {
+ "description": "Array of fireball event records",
+ "items": {
+ "properties": {
+ "altitude_km": {
+ "description": "Altitude of the event in kilometers",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "date": {
+ "description": "Date of the fireball event",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "energy_GJ": {
+ "description": "Impact energy in gigajoules",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Latitude of the impact location",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "latitude_dir": {
+ "description": "Latitude direction (N/S)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude of the impact location",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude_dir": {
+ "description": "Longitude direction (E/W)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "radiated_energy_J": {
+ "description": "Radiated energy in joules",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "velocity_km_s": {
+ "description": "Velocity of the fireball in km/s",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "fireballs"
+ ],
+ "type": "object"
+}