Tsunami Schema
Tsunami JSON Schema
Section titled “Tsunami JSON Schema”Definition Map
Section titled “Definition Map”{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AlaskaIntel Tsunami Feed", "type": "object", "properties": { "active_threat": { "type": "boolean" }, "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "severity": { "type": "string", "enum": ["SEVERE"] }, "title": { "type": "string" }, "instruction": { "type": "string" }, "estimated_arrival": { "type": "array", "items": { "type": "object", "properties": { "location": { "type": "string" }, "time": { "type": "string", "format": "time" } } } } } } } }}