-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
118 lines (118 loc) · 5.07 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
{
"name": "civictechto-breakout-groups",
"title": "Civic Tech Toronto - Breakout Groups",
"description": "During the second half of Civic Tech Toronto's weekly meetups, we run a hack night. People pitch breakout groups to work and/or discuss projects of all sizes. This dataset aims to capture the history of that work.",
"license": "ODC-BY-1.0",
"sources": [{
"name": "CTTO Google Drive folder of presentations",
"web": "https://drive.google.com/drive/folders/0B2riIxpG2GHEcVN1Y0F3emlFTmc"
}, {
"name": "CTTO Project Status Dashboard",
"web": "https://github.com/CivicTechTO/project-tracker/projects/1"
}],
"author": "Civic Tech Toronto",
"contributors": [
"Patrick Connolly <[email protected]>"
],
"resources": [
{
"name": "civictechto-breakout-group-activity",
"path": "./data/civictechto-breakout-groups.csv",
"schema": {
"fields": [
{
"description": "Hack night date.",
"format": "default",
"name": "date",
"title": "Date",
"type": "date",
"constraints": {
"required": true
}
},
{
"description": "Formal or informal name of the project.",
"format": "default",
"name": "project",
"title": "Project Name",
"type": "string",
"constraints": {
"required": true
}
},
{
"description": "The breakout leader for this particular hack night. Slack username on civictechto Slack team if preceded with '@' symbol. Otherwise is informal name.",
"format": "default",
"name": "person",
"title": "Person",
"type": "string",
"constraints": {
"required": true
}
},
{
"description": "Any extra contextual information specific to that hack night.",
"format": "default",
"name": "extra",
"title": "Extra Data",
"type": "string"
},
{
"description": "Whether the group pitched for new participants.",
"format": "default",
"name": "is_onboarding",
"title": "Onboarding?",
"type": "boolean",
"constraints": {
"required": true
}
},
{
"description": "Number of participants in the breakout, including breakout group leader.",
"format": "default",
"name": "participant_count",
"title": "Participant Count",
"type": "integer",
"missingValue": ["", "-"],
"constraints": {
"required": false
}
},
{
"description": "Number of visible minority (non-Caucasian) participants in the breakout.",
"format": "default",
"name": "vismin_count",
"title": "Visible Minority Participant Count",
"type": "integer",
"missingValue": ["", "-"],
"constraints": {
"required": false
}
},
{
"description": "Number of female-presenting participants in the breakout.",
"format": "default",
"name": "female_count",
"title": "Female Participant Count",
"type": "integer",
"missingValue": ["", "-"],
"constraints": {
"required": false
}
},
{
"description": "Internal ID of the Trello card associated with this project, from the Hacknight Projects Trello board.",
"format": "default",
"name": "trello_card_id",
"title": "Trello Card ID",
"type": "string",
"missingValue": ["", "-"],
"constraints": {
"required": false
}
}
]
}
}
]
}