Missing Persons Schema
Missing Persons JSON Schema
Section titled “Missing Persons JSON Schema”Definition Map
Section titled “Definition Map”{ "$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"] }}