home / lobbying

lobbying_affiliated_orgs

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

0 rows where filing_uuid = "aa74910e-de7e-4fa6-8e17-e7d4bf0ba08e"

✎ View and edit SQL

This data as json

0 records

CREATE TABLE lobbying_affiliated_orgs (
            id INTEGER PRIMARY KEY,
            filing_uuid TEXT NOT NULL,
            org_name TEXT,
            country TEXT,
            country_code TEXT,
            CONSTRAINT fk_aff_filing FOREIGN KEY (filing_uuid)
                REFERENCES lobbying_filings_raw(filing_uuid)
        );
CREATE INDEX idx_aff_filing ON lobbying_affiliated_orgs(filing_uuid);
CREATE INDEX idx_aff_name ON lobbying_affiliated_orgs(org_name);
Powered by Datasette · Queries took 3.698ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API