This repository has been archived by the owner on Jan 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
192 lines (187 loc) · 5.56 KB
/
tasks.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
{
"mark_titles": {
"project": {
"namePrefix": "Mark Titles",
"description": "Mark out the titles of plays in historic playbills",
"parent": null,
"help": "./help/mark_titles.md"
},
"task": {
"mode": "select",
"tag": "title",
"objective": "Mark titles",
"guidance": "Draw rectangles around the titles of plays in the upcoming performance, then press the green tick to save. Mark any other performances on the same date. Please include any subtitles or alternative titles. Ignore song titles, past or future performances. Press Save when the page is done.",
"classification": "http://purl.org/dc/terms/title"
}
},
"transcribe_titles": {
"project": {
"namePrefix": "Transcribe Titles",
"description": "Transcribe the titles of marked up plays in historic playbills",
"parent": "mark_titles",
"help": "./help/transcribe_titles.md"
},
"task": {
"mode": "transcribe",
"objective": "Transcribe the title",
"guidance": "Type in the title exactly as displayed in the highlighted box on the page, including any subtitles and punctuation. You don't need to include any genre or description.",
"form": {
"model": {
"title": ""
},
"classification": {
"title": "http://purl.org/dc/terms/title"
},
"schema": {
"fields": [
{
"type": "input",
"inputType": "text",
"label": "Title",
"model": "title",
"placeholder": "Transcribe the title"
}
]
}
},
"bounds": {
"x": -200,
"y": 0,
"width": 400,
"height": 0
}
}
},
"transcribe_genres": {
"project": {
"namePrefix": "Transcribe Genres",
"description": "Transcribe the genres of the highlighted title",
"parent": "mark_titles",
"help": "./help/transcribe_genres.md"
},
"task": {
"mode": "transcribe",
"objective": "Transcribe the genre",
"guidance": "Type in the genre listed for the highlighted title. Terms like 'comedy' or 'melodrama' usually appear above or below the title. If you can't see a genre, leave it blank.",
"form": {
"model": {
"genre": ""
},
"classification": {
"genre": "http://purl.org/dc/terms/type"
},
"schema": {
"fields": [
{
"type": "input",
"inputType": "text",
"label": "Genre",
"model": "genre",
"placeholder": "Transcribe the genre"
}
]
}
},
"bounds": {
"x": -200,
"y": 0,
"width": 400,
"height": 0
}
}
},
"transcribe_dates": {
"project": {
"namePrefix": "Transcribe Dates",
"description": "Transcribe the dates of plays in historic playbills",
"parent": null,
"help": "./help/transcribe_dates.md"
},
"task": {
"mode": "transcribe",
"objective": "Transcribe the date",
"guidance": "Type in the main date of the playbill. Put the day date first, then the month, then the year.",
"form": {
"model": {
"date": ""
},
"classification": {
"date": "http://www.w3.org/2001/XMLSchema#date"
},
"schema": {
"fields": [
{
"type": "input",
"inputType": "text",
"label": "Date",
"model": "date",
"placeholder": "dd/mm/yyyy"
}
]
}
}
}
},
"mark_people": {
"project": {
"namePrefix": "Mark People",
"description": "Mark up the people associated with plays in historic playbills",
"parent": "mark_titles"
},
"task": {
"mode": "select",
"tag": "person",
"objective": "Mark people",
"guidance": "Draw rectangles around the names of people associated with the highlighted title. As well as actors, they might be directors, producers, authors, stage managers etc.",
"classification": "http://xmlns.com/foaf/spec/#term_Person"
}
},
"transcribe_people": {
"project": {
"mode": "transcribe",
"tag": "person",
"parent": "mark_people"
},
"task": {
"namePrefix": "Transcribe Names",
"description": "Transcribe the names of people in historic playbills",
"objective": "Transcribe the name",
"guidance": "Transcribe the name exactly as it appears on the page. Fields where the information is not available (e.g. First name) can be left blank.",
"form": {
"model": {
"title": "",
"givenName": "",
"familyName": ""
},
"schema": {
"fields": [
{
"type": "input",
"inputType": "text",
"label": "Title",
"model": "title",
"placeholder": "Transcribe the title",
"required": false
},
{
"type": "input",
"inputType": "text",
"label": "First name",
"model": "givenName",
"placeholder": "Transcribe the first name",
"required": false
},
{
"type": "input",
"inputType": "text",
"label": "Surname",
"model": "familyName",
"placeholder": "Transcribe the surname",
"required": false
}
]
}
}
}
}
}