This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 153
/
screening-schema.json
491 lines (491 loc) · 16.7 KB
/
screening-schema.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "",
"$comment": "Digital Public Good Metaschema: JSON Schema",
"type": "object",
"title": "Digital Public Good",
"required": [
"name",
"clearOwnership",
"platformIndependence",
"documentation",
"NonPII",
"locations",
"privacy",
"standards",
"doNoHarm"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the Digital Public Good."
},
"clearOwnership": {
"type": "object",
"description": "3. Is ownership clearly defined?",
"required": [
"isOwnershipExplicit"
],
"properties": {
"isOwnershipExplicit": {
"type": "string",
"description": "Is the ownership of the project and everything that the project produces clearly defined and documented?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"copyrightURL": {
"type": "string",
"description": "If yes - please link to the relevant copyright, trademarks, or ownership documentation for the project."
}
}
},
"platformIndependence": {
"type": "object",
"description": "4. Does the license of libraries/dependencies undermine the openess of the project?",
"required": [
"mandatoryDepsCreateMoreRestrictions"
],
"properties": {
"mandatoryDepsCreateMoreRestrictions": {
"type": "string",
"description": "Does this open project have mandatory dependencies (i.e. libraries, hardware) that create more restrictions than the original license?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"isSoftwarePltIndependent": {
"type": "string",
"description": "If yes - are the open source components able to demonstrate independence from the closed component(s) and/or are there functional, open alternatives?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown",
""
]
},
"pltIndependenceDesc": {
"type": "string",
"description": "If yes - please describe how the open source components are independent and/or list the open alternatives for the closed component:"
}
}
},
"documentation": {
"type": "object",
"description": "5. Is there documentation?",
"required": [
"isDocumentationAvailable"
],
"properties": {
"isDocumentationAvailable": {
"type": "string",
"description": "Does some documentation exist of the source code, use cases, and/or functional requirements.\n For software projects, this should be present as technical documentation that would allow a technical person unfamiliar with the project to launch and run the software. For datasets and data projects, this should be present as documentation that describes all the fields in the set, and provides context on how the data was collected and how it should be interpreted. For content collections, this should indicate any relevant compatible apps, software, hardware required to access the content and any instructions about how to use it.",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"documentationURL": {
"type": "array",
"description": "If yes - please link to the relevant documentation:",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
}
}
},
"NonPII": {
"type": "object",
"description": "6. Is non PII data and/or content accessible?",
"required": [
"collectsNonPII"
],
"properties": {
"collectsNonPII": {
"type": "string",
"description": "Does this project collect or use non-personally identifiable information (non-PII) data and/or content?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"checkNonPIIAccessMechanism": {
"type": "string",
"description": "If yes - is there a mechanism for extracting or importing non-personally identifiable information (non-PII) from the system in a non-proprietary format?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown",
""
]
},
"nonPIIAccessMechanism": {
"type": "string",
"description": "If yes - describe the mechanism for extracting or importing non-personally identifiable information from the system in a non-proprietary format:"
}
}
},
"privacy": {
"type": "object",
"description": "7. Does the project adhere to privacy and other applicable international and domestic laws?",
"required": [
"isPrivacyCompliant"
],
"properties": {
"isPrivacyCompliant": {
"type": "string",
"description": "Has this project taken steps to ensure adherence with relevant privacy, domestic, and international laws? For example, the General Data Protection Regulation (GDPR) in the European Union or the Supplementary Act A/SA.1/01/10 on Personal Data Protection for the Economic Community of West African States (ECOWAS) (yes/no)",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"privacyComplianceList": {
"type": "array",
"description": "If yes, please list some of relevant laws that the project complies with:",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"adherenceSteps": {
"type": "array",
"description": "If yes, please describe the steps this project has taken to ensure adherence (include links to terms of service, privacy policy, or other relevant documentation):",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
}
}
},
"standards": {
"type": "object",
"description": "8. Does the project adhere to standards and best practices?",
"required": [
"supportStandards",
"implementBestPractices"
],
"properties": {
"supportStandards": {
"type": "string",
"description": "Does this project support standards? (i.e. Web Content Accessibility Guidelines (WCAG) 2.1 or other standards such as those listed on W3C)",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"standardsList": {
"type": "array",
"description": "Which standards does this project support (please list)",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"evidenceStandardSupport": {
"type": "array",
"description": "Can you point to evidence of your support? (i.e. please link to your validator, open test suite, etc.)",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"implementBestPractices": {
"type": "string",
"description": "Was this project built and developed according to or in adherence with any design, technical and/or sector best practices or principles? i.e. the Principles for Digital Development?"
},
"bestPracticesList": {
"type": "array",
"description": "Which principles and best practices does this project support (please list)",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
}
}
},
"doNoHarm": {
"type": "object",
"description": "9. Does the project do no harm by design?",
"required": [
"preventHarm",
"dataPrivacySecurity",
"inappropriateIllegalContent",
"protectionFromHarassment"
],
"properties": {
"preventHarm": {
"type": "object",
"description": "Has this project taken steps to anticipate, prevent and do no harm by design?",
"required": [
"stepsToPreventHarm"
],
"properties": {
"stepsToPreventHarm": {
"type": "string",
"description": "On the whole, does this project take steps to ensure that it anticipates, prevents and does no harm by design?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"additionalInfoMechanismProcessesPolicies": {
"type": "string",
"description": "Is there any additional information you would like to share about the mechanisms, processes or policies that this project uses to avoid doing harm by design?"
}
}
},
"dataPrivacySecurity": {
"type": "object",
"description": "9.a. Data Privacy & Security",
"required": [
"collectsPII"
],
"properties": {
"collectsPII": {
"type": "string",
"description": "Does this project collect or store personally identifiable information (PII) data and/or content?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"typesOfDataCollected": {
"type": "array",
"description": "If yes - please list the types of data and/or content collected and/or stored by the project:",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"thirdPartyDataSharing": {
"type": "string",
"description": "If yes - does this project share this data and/or content with third parties?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"dataSharingCircumstances": {
"type": "array",
"description": "Please describe the circumstances with which this project shares data and/or content with third parties. Please add links as relevant.",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"ensurePrivacySecurity": {
"type": "string",
"description": "If yes - does the project ensure the privacy, security and integrity of this data and/or content collection and has it taken steps to prevent adverse impacts resulting from its collection, storage and distribution.",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"privacySecurityDescription": {
"type": "string",
"description": "If yes - please describe the steps, and include a link to the privacy policy and/or terms of service:"
}
}
},
"inappropriateIllegalContent": {
"type": "object",
"description": "9.b. Inappropriate & Illegal Content",
"required": [
"collectStoreDistribute"
],
"properties": {
"collectStoreDistribute": {
"type": "string",
"description": "Does this project collect, store or distribute content?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"type": {
"contentType": "string",
"description": "If yes - what kinds of content does this project, collect, store or distribute? (i.e. childrens books)"
},
"contentFilter": {
"type": "string",
"description": "If yes - does this project have policies that describe what is considered innappropriate content? (i.e. child sexual abuse materials)",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown",
""
]
},
"policyGuidelinesDocumentationLink": {
"type": "string",
"description": "If yes - please link to the relevant policy/guidelines/documentation."
},
"illegalContentDetection": {
"type": "string",
"description": "If yes - does this project have policies and processes for detecting and moderating innappropriate/illegal content?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown",
""
]
},
"illegalContentDetectionMechanism": {
"type": "string",
"description": "If yes - please describe the policies and processes for detecting, reporting and removing innapropriate/illegal content (Please include the average response time for assessment and/or action. Link to any policies or descriptions of how inappropriate content is handled):"
}
}
},
"protectionFromHarassment": {
"type": "object",
"description": "9.c. Protection from harassment",
"required": [
"userInteraction"
],
"properties": {
"userInteraction": {
"type": "string",
"description": "Does this project facilitate interactions with or between users or contributors?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown"
]
},
"addressSafetySecurityUnderageUsers": {
"type": "string",
"description": "If yes - does the project take steps to address the safety and security of underage users?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown",
""
]
},
"stepsAddressRiskPreventSafetyUnderageUsers": {
"type": "array",
"description": "If yes - please describe the steps this project takes to address risk or prevent access by underage users:",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"griefAbuseHarassmentProtection": {
"type": "string",
"description": "If yes - does the project help users and contributors protect themselves against grief, abuse, and harassment?",
"uniqueItems": true,
"enum": [
"Yes",
"No",
"Unknown",
""
]
},
"harassmentProtectionSteps": {
"type": "array",
"description": "If yes - please describe the steps taken to help users protect themselves.",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
}
}
}
}
},
"locations": {
"type": "object",
"description": "Development & deployment countries",
"required": [
"developmentCountries",
"deploymentCountries"
],
"properties": {
"developmentCountries": {
"type": "array",
"description": "List of countries this project was developed in.",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
},
"deploymentCountries": {
"type": "array",
"description": "List of countries this project is actively deployed in.",
"items": {
"anyOf": [
{
"type": "string"
}
]
}
}
}
}
}
}