changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "returned": {
+ "description": "Number of volcanoes returned after filtering",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total number of US volcanoes monitored",
+ "type": "number"
+ },
+ "volcanoes": {
+ "description": "List of volcano records",
+ "items": {
+ "properties": {
+ "alert_level": {
+ "description": "Current alert level (Normal/Advisory/Watch/Warning)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "alert_message": {
+ "description": "Current alert status message",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "alert_url": {
+ "description": "URL to full alert information",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "color_code": {
+ "description": "Aviation color code (Green/Yellow/Orange/Red)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "elevation_m": {
+ "description": "Elevation in meters",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Volcano latitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Volcano longitude",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "modified": {
+ "description": "Last modification timestamp",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Volcano name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "observatory": {
+ "description": "Observatory code (AVO, CVO, HVO, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "slug": {
+ "description": "USGS volcano slug for URLs",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "synonyms": {
+ "description": "Alternative volcano names",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "vnum": {
+ "description": "USGS volcano number",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "volcanoes"
+ ],
+ "type": "object"
+}