Permits - Status Change Dataset
This dataset contains Permits from the CompassKC system. It is structured according to the Building & Land Development Specification. Specifically, this dataset is the "permit status change" portion of the standard. Information about the standard can be found here:
https://github.com/open-data-standards/permitdata.org/wiki/Optional-Permit-Status-Change-Dataset-Requirements
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"kcmo/permits-status-change-dataset-6h9j-mu65\".\"permits_status_change_dataset\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.