changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of elevated volcanoes",
+ "type": "number"
+ },
+ "note": {
+ "description": "Description of elevated status criteria",
+ "type": "string"
+ },
+ "volcanoes": {
+ "description": "List of volcanoes above Normal/Green status",
+ "items": {
+ "properties": {
+ "alert_level": {
+ "description": "Current alert level (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 (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": [
+ "count",
+ "note",
+ "volcanoes"
+ ],
+ "type": "object"
+}