-
Notifications
You must be signed in to change notification settings - Fork 21
/
Choice
37 lines (37 loc) · 957 Bytes
/
Choice
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
{
"@context": "../contexts/base",
"@graph": [
{
"@id": "schema:image",
"schema:domainIncludes": {
"@id": "reproschema:Choice"
}
},
{
"@id": "schema:name",
"schema:domainIncludes": {
"@id": "reproschema:Choice"
}
},
{
"@id": "schema:value",
"schema:domainIncludes": {
"@id": "reproschema:Choice"
},
"schema:rangeIncludes": [
{
"@id": "reproschema:Skipped"
},
{
"@id": "reproschema:DontKnow"
}
]
},
{
"@id": "reproschema:Choice",
"@type": "rdfs:Class",
"rdfs:comment": "An object to describe a response option.",
"rdfs:label": "Response choice"
}
]
}