-
Notifications
You must be signed in to change notification settings - Fork 21
/
Field
141 lines (141 loc) · 4.39 KB
/
Field
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
{
"@context": "../contexts/base",
"@graph": [
{
"@id": "skos:prefLabel",
"@type": "rdf:Property",
"rdfs:comment": "The preferred label.",
"rdfs:label": "preferred label",
"schema:domainIncludes": {
"@id": "reproschema:Field"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
"@id": "skos:altLabel",
"@type": "rdf:Property",
"rdfs:comment": "The alternate label.",
"rdfs:label": "alternate label",
"schema:domainIncludes": {
"@id": "reproschema:Field"
},
"schema:rangeIncludes": {
"@id": "schema:Text"
}
},
{
"@id": "schema:description",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:schemaVersion",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:version",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "reproschema:preamble",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:question",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:image",
"@type": "rdf:Property",
"rdfs:comment": "An image of the item. This can be a <a class=\"localLink\" href=\"http://schema.org/URL\">URL</a> or a fully described <a class=\"localLink\" href=\"http://schema.org/ImageObject\">ImageObject</a>.",
"rdfs:label": "image",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "reproschema:inputType",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:readonlyValue",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:isPartOf",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
},
"schema:rangeIncludes": {
"@id": "reproschema:Activity"
}
},
{
"@id": "reproschema:responseOptions",
"@type": "rdf:Property",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "reproschema:additionalNotesObj",
"@type": "rdf:Property",
"rdfs:comment": "A set of objects to define notes in a field. For example, most Redcap and NDA data dictionaries have notes for each item which needs to be captured in reproschema.",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:associatedMedia",
"@type": "rdf:Property",
"rdfs:comment": "A media object that encodes this CreativeWork. This property is a synonym for encoding.",
"rdfs:label": "associatedMedia",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "schema:about",
"@type": "rdf:Property",
"rdfs:comment": "The subject matter of the Field.",
"schema:domainIncludes": {
"@id": "reproschema:Field"
}
},
{
"@id": "reproschema:Field",
"@type": [
"rdfs:Class",
"prov:Entity",
"nidm:DataElement"
],
"rdfs:comment": "An item in an assessment.",
"rdfs:label": "Field",
"rdfs:subClassOf": {
"@id": "schema:CreativeWork"
}
}
]
}