Skip to content

Tsunami Schema

{
"$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" }
}
}
}
}
}
}
}
}