slnader commited on
Commit
c2cfbc4
1 Parent(s): dbc2836

Upload 5 files

Browse files
Files changed (5) hide show
  1. attachments.tar.gz +3 -0
  2. db_diagram.jpg +3 -0
  3. fcc.tar.gz +3 -0
  4. fcc_database.md +103 -0
  5. search.tar.gz +3 -0
attachments.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ee5d74175ecf2e94f6ff2bb4a277bbe5ee72c7b54742af1983c027d12c237a0
3
+ size 1273849170
db_diagram.jpg ADDED

Git LFS Details

  • SHA256: 86440d4a6699e89fff686fadb7cd7bb127e47598f645d0042be43f751d1c2cfc
  • Pointer size: 130 Bytes
  • Size of remote file: 53.4 kB
fcc.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ce4aa829fcc78db9113a6909abd5b0ecb18fce6a34458ca81190de724ebbd7b
3
+ size 2071191320
fcc_database.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
search.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f28e276211129f2715c261f9cc4b71cff7520cfed971a1f0f3a99b237ead32d
3
+ size 161059796