changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of notices returned",
+ "type": "number"
+ },
+ "notices": {
+ "description": "List of volcano notices and alerts",
+ "items": {
+ "properties": {
+ "alert_level": {
+ "description": "Alert level at time of notice",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "color_code": {
+ "description": "Color code at time of notice",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Notice ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "message": {
+ "description": "Full notice message text",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "observatory": {
+ "description": "Observatory code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "sent_utc": {
+ "description": "Timestamp when notice was sent (UTC)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "slug": {
+ "description": "Volcano slug",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "summary": {
+ "description": "Brief summary of the notice",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Message type (VAN, VONA, etc.)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "URL to full notice",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "volcano": {
+ "description": "Volcano name",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "volcano_slug": {
+ "description": "Filtered volcano slug if provided, otherwise null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "volcano_slug",
+ "count",
+ "notices"
+ ],
+ "type": "object"
+}