Datasets:
Tasks:
Text Retrieval
Modalities:
Image
Formats:
imagefolder
Sub-tasks:
document-retrieval
Languages:
English
Size:
< 1K
License:
Delete fcc_database.md
Browse files- fcc_database.md +0 -103
fcc_database.md
DELETED
@@ -1,103 +0,0 @@
|
|
1 |
-
## FCC relational database
|
2 |
-
|
3 |
-
The core components of the database include a table for submission metadata, a table for attachment metadata, a table for filer metadata, and a table that contains comment text if submitted in express format. In addition to these core tables, there are several derived tables specific to the analyses in the paper, including which submissions and attachments were cited in the final order. The keys fit together as shown in the diagram below.
|
4 |
-
|
5 |
-
<img src="db_diagram.jpg" alt="drawing" width="600"/>
|
6 |
-
|
7 |
-
### comments
|
8 |
-
plain text comments associated with submissions
|
9 |
-
|
10 |
-
| column | type | description |
|
11 |
-
| ----------- | ----------- | ----------- |
|
12 |
-
| comment_id | character varying(64) | unique id for plain text comment |
|
13 |
-
comment_text | text | raw text of plain text comment
|
14 |
-
row_id | integer | row sequence for plain text comments
|
15 |
-
|
16 |
-
### submissions
|
17 |
-
metadata for submissions
|
18 |
-
|
19 |
-
| column | type | description |
|
20 |
-
| ----------- | ----------- | ----------- |
|
21 |
-
submission_id | character varying(20) | unique id for submission
|
22 |
-
submission_type | character varying(100) | type of submission (e.g., comment, reply, statement)
|
23 |
-
express_comment | numeric | 1 if express comment
|
24 |
-
date_received | date | date submission was received
|
25 |
-
contact_email | character varying(255) | submitter email address
|
26 |
-
city | character varying(255) | submitter city
|
27 |
-
address_line_1 | character varying(255) | submitter address line 1
|
28 |
-
address_line_2 | character varying(255) | submitter address line 2
|
29 |
-
state | character varying(255) | submitter state
|
30 |
-
zip_code | character varying(50) | submitter zip
|
31 |
-
comment_id | character varying(64) | unique id for plain text comment
|
32 |
-
|
33 |
-
### filers
|
34 |
-
names of filers associated with submissions
|
35 |
-
|
36 |
-
| column | type | description |
|
37 |
-
| ----------- | ----------- | ----------- |
|
38 |
-
submission_id | character varying(20) | unique id for submission
|
39 |
-
filer_name | character varying(250) | name of filer associated with submission
|
40 |
-
|
41 |
-
### documents
|
42 |
-
attachments associated with submissions
|
43 |
-
|
44 |
-
| column | type | description |
|
45 |
-
| ----------- | ----------- | ----------- |
|
46 |
-
submission_id | character varying(20) | unique id for submission
|
47 |
-
document_name | text | filename of attachment
|
48 |
-
download_status | numeric | status of attachment download
|
49 |
-
document_id | character varying(64) | unique id for attachment
|
50 |
-
file_extension | character varying(4) | file extension for attachment
|
51 |
-
|
52 |
-
### filers_cited
|
53 |
-
citations from final order
|
54 |
-
|
55 |
-
| column | type | description |
|
56 |
-
| ----------- | ----------- | ----------- |
|
57 |
-
point | numeric | paragraph number in final order
|
58 |
-
filer_name | character varying(250) | name of cited filer
|
59 |
-
submission_type | character varying(12) | type of submission as indicated in final order
|
60 |
-
page_numbers | text[] | cited page numbers
|
61 |
-
cite_id | integer | unique id for citation
|
62 |
-
filer_id | character varying(250) | id for cited filer
|
63 |
-
|
64 |
-
### docs_cited
|
65 |
-
attachments associated with cited submissions
|
66 |
-
|
67 |
-
| column | type | description |
|
68 |
-
| ----------- | ----------- | ----------- |
|
69 |
-
cite_id | numeric | unique id for citation
|
70 |
-
submission_id | character varying(20) | unique id for submission
|
71 |
-
document_id | character varying(64) | unique id for attachment
|
72 |
-
|
73 |
-
|
74 |
-
### near_duplicates
|
75 |
-
lookup table for comment near-duplicates
|
76 |
-
|
77 |
-
| column | type | description |
|
78 |
-
| ----------- | ----------- | ----------- |
|
79 |
-
target_document_id | unique id for target document
|
80 |
-
duplicate_document_id | unique id for duplicate of target document
|
81 |
-
|
82 |
-
### exact_duplicates
|
83 |
-
lookup table for comment exact duplicates
|
84 |
-
|
85 |
-
| column | type | description |
|
86 |
-
| ----------- | ----------- | ----------- |
|
87 |
-
target_document_id | character varying(100) | unique id for target document
|
88 |
-
duplicate_document_id | character varying(100) | unique id for duplicate of target document
|
89 |
-
|
90 |
-
### in_person_exparte
|
91 |
-
submissions associated with ex parte meeting
|
92 |
-
|
93 |
-
| column | type | description |
|
94 |
-
| ----------- | ----------- | ----------- |
|
95 |
-
submission_id | character varying(20) | unique id for submission
|
96 |
-
|
97 |
-
### interest_groups
|
98 |
-
submissions associated with interest groups
|
99 |
-
|
100 |
-
| column | type | description |
|
101 |
-
| ----------- | ----------- | ----------- |
|
102 |
-
submission_id | character varying(20) | unique id for submission
|
103 |
-
business | numeric | 1 if business group, 0 otherwise
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|