attachment
- attachment_id
- Primary key.
- file_description
- Free-text description of the attachment.
- file_urls
- URL(s) to download the attachment from OLMS.
- filename
- Filename of the attachment.
- rptId
- Foreign key to filing.rptId.
937 rows
Suggested facets: file_description
Table schema
CREATE TABLE attachment(rptId BIGINT, attachment_id BIGINT, filename VARCHAR, file_description VARCHAR, file_urls VARCHAR, PRIMARY KEY(attachment_id), FOREIGN KEY (rptId) REFERENCES filing(rptId));