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 = "70d0d7e8-c8f2-4e80-bdc7-2bb3aa3671df"

✎ 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 637.853ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API