forked from DPGAlliance/publicgoods-candidates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcandidate-schema.json
More file actions
53 lines (53 loc) · 1.76 KB
/
candidate-schema.json
File metadata and controls
53 lines (53 loc) · 1.76 KB
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
{ "$schema" : "http://json-schema.org/draft-07/schema#",
"$id": "",
"$comment" : "Digital Public Good Metaschema: JSON Schema",
"title": "Digital Public Good",
"type": "object",
"required": [ "name", "description", "website", "license", "SDGs", "type"],
"properties": {
"name": {
"type": "string",
"description": "The name of the Global Digital Public Good. Full name, no initialisms, no acronyms."
},
"initialism": {
"type": "string",
"description": "Abbreviation of name of Global Digital Public Good, where relevant."
},
"description": {
"type": "string",
"description": "Concise 1-line description of Global Digital Public Good"
},
"license": {
"type": "string",
"description": "License under which the Global Digital Pubic Good is released."
},
"license_link": {
"type": "string",
"description": "Link to the license under which the Global Digital Pubic Good is released."
},
"website": {
"type": "string",
"description": "Public website for the Global Digital Public Good."
},
"SDGs": {
"type": "array",
"description": "List of Sustainable Development Goals that this Global Digital Public Good addresses.",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "integer",
"enum": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
}
},
"type": {
"type": "array",
"description": "List of categories under which this Global Digital Public Good falls into: software, data, standards.",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "string",
"enum": ["software", "data", "standards"]
}
}
}
}