Skip to content

Commit 1c0a78e

Browse files
authored
Merge pull request #437 from satra/master
generated release 1.0.0-rc3
2 parents 0ca58be + d5a1f97 commit 1c0a78e

File tree

8 files changed

+2728
-3
lines changed

8 files changed

+2728
-3
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ following libraries via pip
3737
- reproschema (makeRelease.py)
3838
- pytablewriter (editProperties.py)
3939

40+
To make a new release:
41+
42+
```
43+
python scripts/makeRelease.py <version>
44+
python scripts/editProperties.py <version>
45+
```
46+
4047
In addition, this repo uses pre-commit to check styling.
4148

4249
Install: `pip install pre-commit`

docs/30_schema.md

Lines changed: 14 additions & 3 deletions
Large diffs are not rendered by default.

releases/1.0.0-rc3/base

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"@context": {
3+
"@version": 1.1,
4+
"dct": "http://purl.org/dc/terms/",
5+
"owl": "http://www.w3.org/2002/07/owl#",
6+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
7+
"rdfa": "http://www.w3.org/ns/rdfa#",
8+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
9+
"schema": "http://schema.org/",
10+
"xsd": "http://www.w3.org/2001/XMLSchema#",
11+
"skos": "http://www.w3.org/2004/02/skos/core#",
12+
"prov": "http://www.w3.org/ns/prov#",
13+
"pav": "http://purl.org/pav/",
14+
"nidm": "http://purl.org/nidash/nidm#",
15+
"uuid": "http://uuid.repronim.org/",
16+
"reproschema": "http://schema.repronim.org/"
17+
}
18+
}

releases/1.0.0-rc3/generic

Lines changed: 281 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,281 @@
1+
{
2+
"@context": [ "base",
3+
{
4+
"@version": 1.1,
5+
"@language": "en",
6+
"description": {
7+
"@id": "schema:description",
8+
"@container": "@language"
9+
},
10+
"name": {
11+
"@id": "schema:name",
12+
"@container": "@language"
13+
},
14+
"value": {
15+
"@id": "reproschema:value"
16+
},
17+
"image": {
18+
"@id": "schema:image"
19+
},
20+
"imageUrl": {
21+
"@id": "schema:image",
22+
"@type": "xsd:anyURI"
23+
},
24+
"audio": {
25+
"@id": "schema:audio"
26+
},
27+
"video": {
28+
"@id": "schema:video"
29+
},
30+
"contentUrl": {
31+
"@id": "schema:contentUrl",
32+
"@type": "xsd:anyURI"
33+
},
34+
"VideoObject": "schema:VideoObject",
35+
"AudioObject": "schema:AudioObject",
36+
"inLanguage": {
37+
"@id": "schema:inLanguage"
38+
},
39+
"url": {
40+
"@id": "schema:url",
41+
"@type": "xsd:anyURI"
42+
},
43+
"citation": {
44+
"@id": "schema:citation",
45+
"@container": "@language"
46+
},
47+
"version": {
48+
"@id": "schema:version",
49+
"@container": "@language"
50+
},
51+
"schemaVersion": {
52+
"@id": "schema:schemaVersion",
53+
"@container": "@language"
54+
},
55+
"prefLabel": {
56+
"@id": "skos:prefLabel",
57+
"@container": "@language"
58+
},
59+
"altLabel": {
60+
"@id": "skos:altLabel",
61+
"@container": "@language"
62+
},
63+
"preamble": {
64+
"@id": "reproschema:preamble",
65+
"@container": "@language"
66+
},
67+
"valueType": {
68+
"@id": "reproschema:valueType",
69+
"@type": "@id",
70+
"@container": "@set"
71+
},
72+
"landingPage": {
73+
"@id": "reproschema:landingPage",
74+
"@type": "xsd:anyURI",
75+
"@container": "@set"
76+
},
77+
"question": {
78+
"@id": "schema:question",
79+
"@container": "@language"
80+
},
81+
"choices": {
82+
"@id": "reproschema:choices"
83+
},
84+
"valueRequired": "schema:valueRequired",
85+
"multipleChoice": {
86+
"@id": "reproschema:multipleChoice",
87+
"@type": "schema:Boolean"
88+
},
89+
"responseOptions": {
90+
"@id": "reproschema:responseOptions",
91+
"@container": "@set",
92+
"@type": "@id"
93+
},
94+
"dataType": {
95+
"@id": "schema:DataType",
96+
"@type": "@id"
97+
},
98+
"minValue": {
99+
"@id": "schema:minValue"
100+
},
101+
"maxValue": {
102+
"@id": "schema:maxValue"
103+
},
104+
"unitCode": {
105+
"@id": "schema:unitCode",
106+
"@container": "@set"
107+
},
108+
"unitOptions": {
109+
"@id": "reproschema:unitOptions",
110+
"@container": "@set"
111+
},
112+
"ui" : "@nest",
113+
"order": {
114+
"@id": "reproschema:order",
115+
"@container": "@list",
116+
"@type": "@id",
117+
"@nest": "ui"
118+
},
119+
"addProperties": {
120+
"@id": "reproschema:addProperties",
121+
"@type": "reproschema:AdditionalProperty",
122+
"@container": "@set",
123+
"@nest": "ui"
124+
},
125+
"overrideProperties": {
126+
"@id": "reproschema:overrideProperties",
127+
"@type": "reproschema:OverrideProperty",
128+
"@container": "@set",
129+
"@nest": "ui"
130+
},
131+
"message": {
132+
"@id": "reproschema:message",
133+
"@container": "@language"
134+
},
135+
"shuffle": {
136+
"@id": "reproschema:shuffle",
137+
"@type": "schema:Boolean",
138+
"@nest": "ui"
139+
},
140+
"inputOptions": {
141+
"@id": "reproschema:inputs",
142+
"@container": "@index",
143+
"@nest": "ui"
144+
},
145+
"inputType": {
146+
"@id": "reproschema:inputType",
147+
"@type": "xsd:string",
148+
"@nest": "ui"
149+
},
150+
"readonlyValue": {
151+
"@id": "schema:readonlyValue",
152+
"@nest": "ui"
153+
},
154+
"compute": {
155+
"@id": "reproschema:compute",
156+
"@container": "@set"
157+
},
158+
"messages": {
159+
"@id": "reproschema:messages",
160+
"@container": "@set"
161+
},
162+
"jsExpression": {
163+
"@id": "reproschema:jsExpression"
164+
},
165+
"isVis": {
166+
"@id": "reproschema:isVis"
167+
},
168+
"variableName": "reproschema:variableName",
169+
"isAbout": {
170+
"@id": "reproschema:isAbout",
171+
"@type": "@id"
172+
},
173+
"allow": {
174+
"@id": "reproschema:allow",
175+
"@container": "@set",
176+
"@type": "@id",
177+
"@nest": "ui"
178+
},
179+
"reproschema:Skipped": {"@id": "reproschema:Skipped"},
180+
"reproschema:DontKnow": {"@id": "reproschema:DontKnow"},
181+
"reproschema:TimedOut": {"@id": "reproschema:TimedOut"},
182+
"reproschema:AutoAdvance": {"@id": "reproschema:AutoAdvance"},
183+
"reproschema:DisableBack": {"@id": "reproschema:DisableBack"},
184+
"reproschema:AllowExport": {"@id": "reproschema:AllowExport"},
185+
"reproschema:AllowReplay": {"@id": "reproschema:AllowReplay"},
186+
"timer": {
187+
"@id": "reproschema:timer",
188+
"@type": "@id",
189+
"@nest": "ui"
190+
},
191+
"delay": {
192+
"@id": "reproschema:delay",
193+
"@type": "@id",
194+
"@nest": "ui"
195+
},
196+
"additionalNotesObj": {
197+
"@id": "reproschema:additionalNotesObj",
198+
"@type": "reproschema:AdditionalNoteObj",
199+
"@container": "@set"
200+
},
201+
"source": {
202+
"@id": "reproschema:source",
203+
"@type": "xsd:string"
204+
},
205+
"column": {
206+
"@id": "reproschema:column",
207+
"@type": "xsd:string"
208+
},
209+
"randomMaxDelay": {
210+
"@id": "reproschema:randomMaxDelay"
211+
},
212+
"schedule": {
213+
"@id": "reproschema:schedule"
214+
},
215+
"limit": {
216+
"@id": "reproschema:limit"
217+
},
218+
"maxRetakes": {
219+
"@id": "reproschema:maxRetakes"
220+
},
221+
"importedFrom": {
222+
"@id": "pav:importedFrom",
223+
"@type": "@id"
224+
},
225+
"importedBy": {
226+
"@id": "pav:importedBy",
227+
"@type": "@id"
228+
},
229+
"createdWith": {
230+
"@id": "pav:createdWith",
231+
"@type": "@id"
232+
},
233+
"createdBy": {
234+
"@id": "pav:createdBy",
235+
"@type": "@id"
236+
},
237+
"createdOn": {
238+
"@id": "pav:createdOn",
239+
"@type": "xsd:dateTime"
240+
},
241+
"previousVersion": {
242+
"@id": "pav:previousVersion",
243+
"@type": "@id"
244+
},
245+
"lastUpdateOn": {
246+
"@id": "pav:lastUpdateOn",
247+
"@type": "xsd:dateTime"
248+
},
249+
"derivedFrom": {
250+
"@id": "prov:wasDerivedFrom",
251+
"@type": "@id"
252+
},
253+
"used": {
254+
"@id": "prov:used",
255+
"@container": "@set",
256+
"@type": "@id"
257+
},
258+
"wasAttributedTo": {
259+
"@id": "prov:wasAttributedTo",
260+
"@type": "reproschema:Participant",
261+
"@container": "@set"
262+
},
263+
"wasAssociatedWith": {
264+
"@id": "prov:wasAssociatedWith",
265+
"@type": "reproschema:SoftwareAgent",
266+
"@container": "@set"
267+
},
268+
"subject_id": {
269+
"@id": "nidm:subject_id"
270+
},
271+
"startedAtTime": {
272+
"@id": "prov:startedAtTime",
273+
"@type": "xsd:dateTime"
274+
},
275+
"endedAtTime": {
276+
"@id": "prov:endedAtTime",
277+
"@type": "xsd:dateTime"
278+
}
279+
}
280+
]
281+
}

0 commit comments

Comments
 (0)