-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
217 lines (216 loc) · 6.23 KB
/
datapackage.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
{
"title": "Safe Harbor companies registered with the FTC",
"date": "2017-02-16",
"name": "safe-harbor",
"version": "0.6",
"license": "PDDL-1.0",
"sources": [{
"name": "Federal Trade Commission Safe Harbor website",
"web": "https://safeharbor.export.gov/"
}],
"resources": [
{
"path": "data/safe_harbor.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "asp_index",
"type": "string",
"description": "The index of the record in the .NET ASP database used by the FTC"
},
{
"name": "OrgName",
"type": "string",
"description": "The name of the organisation"
},
{
"name": "latest",
"type": "boolean",
"description": "Indicates if this is the latest entry for this organisation. Matches are based on OrgName"
},
{
"name": "previous",
"type": "string",
"description": "The index of the previous entry for the same organisation, if any. Left blank otherwise"
},
{
"name": "CertificationStatus",
"type": "boolean",
"description": "Current certification status. Boolean means Current/Not Current"
},
{
"name": "industrysector",
"type": "string",
"description": "Industry sector"
},
{
"name": "PPLoc",
"type": "string",
"description": "Location of the privacy policy"
},
{
"name": "privacyprograms",
"type": "string",
"description": "Additional privacy programs that might apply"
},
{
"name": "recoursemech",
"type": "string",
"description": "Recourse mechanism"
},
{
"name": "activities",
"type": "string",
"description": "Long form description of business activities"
},
{
"name": "address",
"type": "string",
"description": "Address of HQ"
},
{
"name": "city",
"type": "string",
"description": "City of HQ"
},
{
"name": "state",
"type": "string",
"description": "State of HQ"
},
{
"name": "zip",
"type": "string",
"description": "Zip code"
},
{
"name": "Phone",
"type": "string",
"description": "Phone number"
},
{
"name": "Fax",
"type": "string",
"description": "Fax number"
},
{
"name": "contactname1",
"type": "string",
"description": "Contact name"
},
{
"name": "contacttitle1",
"type": "string",
"description": "Contact title"
},
{
"name": "contactoff1",
"type": "string",
"description": "Contact office"
},
{
"name": "contactemail1",
"type": "string",
"description": "Contact email"
},
{
"name": "contactfax1",
"type": "string",
"description": "Contact fax"
},
{
"name": "contactphone1",
"type": "string",
"description": "Contact phone"
},
{
"name": "corpoffname1",
"type": "string",
"description": "Corporate officer name"
},
{
"name": "corpofftitle1",
"type": "string",
"description": "Corporate officer title"
},
{
"name": "corpoffemail1",
"type": "string",
"description": "Corporate officer email"
},
{
"name": "corpofffax1",
"type": "string",
"description": "Corporate officer fax"
},
{
"name": "corpoffphone1",
"type": "string",
"description": "Corporate officer phone"
},
{
"name": "eucountries",
"type": "string",
"description": "relevant EU countries (and CH)"
},
{
"name": "euprotection",
"type": "boolean",
"description": "Companies have the option of delegating some authority to the EU rather than the FTC"
},
{
"name": "hrdata",
"type": "boolean",
"description": "Applies to HR data"
},
{
"name": "orgverification",
"type": "string",
"description": "Verification organisation"
},
{
"name": "nextcertification",
"type": "date",
"description": "Date of next certification"
},
{
"name": "personaldata",
"type": "string",
"description": "clarification of personal data collected (self-reported)"
},
{
"name": "ppdate",
"type": "date",
"description": "Privacy policy date"
},
{
"name": "signupdate",
"type": "date",
"description": "Signup date"
},
{
"name": "statutorybody",
"type": "string",
"description": "Statutory body",
"constraints":
{
"oneOf": ["FTC", "DoT"]
}
},
{
"name": "eucountries_parsed",
"type": "array",
"description": "A more computer-friendly version of the eucountries field, formatted as an array of ISO3166-1-Alpha-3, coming from country-codes datapackage"
},
{
"name": "industrysectors_parsed",
"type": "array",
"description": "A more computer-friendly version of the industrysectors field, formatted as an array of sectors"
}
]
}
}
]
}