inspections
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
1 row where cert_number = "58-C-1338" sorted by inspection_date descending
This data as json, CSV (advanced)
Suggested facets: inspection_date (date)
inspection_type 0
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE inspections (
id TEXT PRIMARY KEY,
cert_number TEXT REFERENCES facilities(cert_number),
inspection_date TEXT,
inspection_type TEXT,
critical_count INTEGER,
noncritical_count INTEGER,
direct_count INTEGER,
teachable_moment_count INTEGER,
pdf_url TEXT,
pdf_local_path TEXT
);
CREATE INDEX idx_inspections_date ON inspections(inspection_date);
CREATE INDEX idx_inspections_cert ON inspections(cert_number);