{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Jurisdiction", "description": "A place with a government — a county or congressional district — carrying demographic context. A node in the fractal jurisdiction tree.", "type": "object", "required": ["type", "title", "classification", "confidence", "tags", "timestamp"], "properties": { "type": { "type": "string", "enum": ["Jurisdiction"] }, "title": { "type": "string" }, "classification": { "type": "string", "enum": ["county", "congressional-district"] }, "fips": { "type": "string" }, "state": { "type": "string" }, "district": { "type": "string" }, "demographics": { "type": "object" }, "sources": { "type": "array" }, "confidence": { "type": "string", "enum": ["official", "reported", "inferred", "unverified"] }, "tags": { "type": "array" }, "timestamp": { "type": "string" } } }