Skip to content

Missing Persons Schema

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AlaskaIntel Missing Persons",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"name": { "type": "string" },
"age": { "type": "integer" },
"last_known_location": { "type": "string" },
"status": { "type": "string", "enum": ["ACTIVE", "RESOLVED"] },
"incident_date": { "type": "string", "format": "date" },
"description": { "type": "string" }
},
"required": ["id", "name", "status"]
}
}