items
Data source: mySociety Data · About: simonw/register-of-members-interests-datasette
1 row where record_id = "2019-09-30-f0bc685c-10040-0" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: date (date)
| hash | item | category_id | date ▲ | member_id | person_id | sort_order | record_id | 
|---|---|---|---|---|---|---|---|
| 5b973c7118431a23d1222b559a8062cde4ccd5b2 | Name of donor: Swiss Indoors AG Address of donor: Bettenstrasse 73, CH-4123, Allswchwil, Switzerland Amount of donation, or nature and value if donation in kind: Ticket for the Swiss Indoors Basel tennis final on 28 October 2018, value approximately £600 Date received: 28 October 2018 Date accepted: 28 October 2018 Donor status: company, registration CH-270.3.005.060-7 (Registered 08 November 2018) | Gifts and benefits from sources outside the UK f0bc685c | 2019-09-30 | John Bercow uk.org.publicwhip/person/10040 | 0 | 2019-09-30-f0bc685c-10040-0 | 
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE items (
        hash VARCHAR(40) NOT NULL,
        item TEXT,
        category_id TEXT,
        date TEXT,
        member_id TEXT,
        person_id TEXT,
        sort_order INTEGER,
        record_id TEXT,
        PRIMARY KEY (hash),
        FOREIGN KEY ("category_id") REFERENCES [categories](id),
        FOREIGN KEY ("member_id") REFERENCES [members](id),
        FOREIGN KEY ("person_id") REFERENCES [people](id)
    );
CREATE INDEX items_date ON items("date");
CREATE INDEX items_category_id ON items("category_id");
CREATE INDEX items_member_id ON items("member_id");
CREATE INDEX items_person_id ON items("person_id");
CREATE INDEX items_record_id ON items("record_id");