document
- case_number
- Foreign key to filing.case_number.
- created_at
- Scrape timestamp.
- document
- Name or short description of the document.
- url
- URL to the document on nlrb.gov.
8,076 rows
This data as json, CSV (advanced)
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE document (case_number text not null,
document text,
url text,
created_at timestamp default CURRENT_TIMESTAMP,
FOREIGN KEY(case_number) REFERENCES filing(case_number));