@glossarist/concept-browser 0.3.7 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/cli/index.mjs +2 -1
- package/env.d.ts +5 -0
- package/package.json +4 -3
- package/scripts/build-edges.js +78 -10
- package/scripts/generate-data.mjs +152 -20
- package/scripts/generate-ontology-data.mjs +184 -0
- package/scripts/generate-ontology-schema.mjs +315 -0
- package/src/__tests__/concept-card.test.ts +1 -1
- package/src/__tests__/concept-detail-interaction.test.ts +40 -18
- package/src/__tests__/concept-formats.test.ts +32 -30
- package/src/__tests__/concept-timeline.test.ts +108 -83
- package/src/__tests__/concept-view.test.ts +15 -2
- package/src/__tests__/dataset-adapter.test.ts +172 -23
- package/src/__tests__/dataset-view.test.ts +6 -5
- package/src/__tests__/designation-registry.test.ts +161 -0
- package/src/__tests__/graph.test.ts +62 -0
- package/src/__tests__/language-detail.test.ts +117 -60
- package/src/__tests__/ontology-registry.test.ts +109 -0
- package/src/__tests__/relationship-categories.test.ts +62 -0
- package/src/__tests__/test-helpers.ts +11 -8
- package/src/adapters/DatasetAdapter.ts +171 -48
- package/src/adapters/model-bridge.ts +277 -0
- package/src/adapters/ontology-registry.ts +75 -0
- package/src/adapters/ontology-schema.ts +100 -0
- package/src/adapters/types.ts +52 -77
- package/src/components/AppSidebar.vue +1 -1
- package/src/components/CitationDisplay.vue +35 -0
- package/src/components/ConceptDetail.vue +334 -93
- package/src/components/ConceptRdfView.vue +397 -0
- package/src/components/ConceptTimeline.vue +56 -52
- package/src/components/GraphPanel.vue +96 -31
- package/src/components/LanguageDetail.vue +45 -37
- package/src/components/NavIcon.vue +1 -0
- package/src/components/NonVerbalRepDisplay.vue +38 -0
- package/src/components/RelationshipList.vue +99 -0
- package/src/config/use-site-config.ts +3 -0
- package/src/data/ontology-schema.json +1551 -0
- package/src/data/taxonomies.json +543 -0
- package/src/graph/GraphEngine.ts +7 -4
- package/src/router/index.ts +5 -0
- package/src/shims/empty.ts +1 -0
- package/src/shims/node-crypto.ts +6 -0
- package/src/shims/node-path.ts +10 -0
- package/src/stores/vocabulary.ts +75 -25
- package/src/style.css +74 -20
- package/src/utils/concept-formats.ts +22 -20
- package/src/utils/concept-helpers.ts +43 -23
- package/src/utils/designation-registry.ts +124 -0
- package/src/utils/relationship-categories.ts +84 -0
- package/src/views/OntologySchemaView.vue +302 -0
- package/src/views/PageView.vue +28 -17
- package/src/views/StatsView.vue +34 -12
- package/vite.config.ts +8 -0
|
@@ -0,0 +1,1551 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ontologyIri": "https://www.glossarist.org/ontologies/glossarist",
|
|
3
|
+
"ontologyLabel": "Glossarist Ontology",
|
|
4
|
+
"classes": {
|
|
5
|
+
"gloss:Concept": {
|
|
6
|
+
"iri": "https://www.glossarist.org/ontologies/Concept",
|
|
7
|
+
"compact": "gloss:Concept",
|
|
8
|
+
"label": "Concept",
|
|
9
|
+
"comment": "A managed terminology concept — the top-level entity in Glossarist. Has status, dates, domains, related concepts, and localizations. Corresponds to ManagedConcept in glossarist-ruby.",
|
|
10
|
+
"subClassOf": "skos:Concept",
|
|
11
|
+
"disjointWith": null,
|
|
12
|
+
"children": [],
|
|
13
|
+
"ancestors": [
|
|
14
|
+
"skos:Concept"
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"gloss:ConceptCollection": {
|
|
18
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptCollection",
|
|
19
|
+
"compact": "gloss:ConceptCollection",
|
|
20
|
+
"label": "Concept Collection",
|
|
21
|
+
"comment": "A managed collection of concepts (a glossary or register). Corresponds to ManagedConceptCollection in glossarist-ruby.",
|
|
22
|
+
"subClassOf": "skos:Collection",
|
|
23
|
+
"disjointWith": null,
|
|
24
|
+
"children": [],
|
|
25
|
+
"ancestors": [
|
|
26
|
+
"skos:Collection"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"gloss:LocalizedConcept": {
|
|
30
|
+
"iri": "https://www.glossarist.org/ontologies/LocalizedConcept",
|
|
31
|
+
"compact": "gloss:LocalizedConcept",
|
|
32
|
+
"label": "Localized Concept",
|
|
33
|
+
"comment": "A concept in a specific language. Contains designations, definition, notes, examples, sources. Linked to its managed concept via gloss:isLocalizationOf. Corresponds to LocalizedConcept in glossarist-ruby.",
|
|
34
|
+
"subClassOf": "skos:Concept",
|
|
35
|
+
"disjointWith": null,
|
|
36
|
+
"children": [],
|
|
37
|
+
"ancestors": [
|
|
38
|
+
"skos:Concept"
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"gloss:Designation": {
|
|
42
|
+
"iri": "https://www.glossarist.org/ontologies/Designation",
|
|
43
|
+
"compact": "gloss:Designation",
|
|
44
|
+
"label": "Designation",
|
|
45
|
+
"comment": "Abstract base for all designation types. A designation is both a gloss:Designation and a skosxl:Label. The xl:literalForm carries the designation text. Corresponds to Designation::Base in glossarist-ruby.",
|
|
46
|
+
"subClassOf": "xl:Label",
|
|
47
|
+
"disjointWith": null,
|
|
48
|
+
"children": [
|
|
49
|
+
"gloss:Expression",
|
|
50
|
+
"gloss:Symbol"
|
|
51
|
+
],
|
|
52
|
+
"ancestors": [
|
|
53
|
+
"xl:Label"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
"gloss:Expression": {
|
|
57
|
+
"iri": "https://www.glossarist.org/ontologies/Expression",
|
|
58
|
+
"compact": "gloss:Expression",
|
|
59
|
+
"label": "Expression",
|
|
60
|
+
"comment": "A word or phrase used as a designation.",
|
|
61
|
+
"subClassOf": "gloss:Designation",
|
|
62
|
+
"disjointWith": "gloss:Symbol",
|
|
63
|
+
"children": [
|
|
64
|
+
"gloss:Abbreviation"
|
|
65
|
+
],
|
|
66
|
+
"ancestors": [
|
|
67
|
+
"gloss:Designation",
|
|
68
|
+
"xl:Label"
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"gloss:Abbreviation": {
|
|
72
|
+
"iri": "https://www.glossarist.org/ontologies/Abbreviation",
|
|
73
|
+
"compact": "gloss:Abbreviation",
|
|
74
|
+
"label": "Abbreviation",
|
|
75
|
+
"comment": "A shortened form of a word or phrase (acronym, initialism, or truncation).",
|
|
76
|
+
"subClassOf": "gloss:Expression",
|
|
77
|
+
"disjointWith": null,
|
|
78
|
+
"children": [],
|
|
79
|
+
"ancestors": [
|
|
80
|
+
"gloss:Expression",
|
|
81
|
+
"gloss:Designation",
|
|
82
|
+
"xl:Label"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
"gloss:Symbol": {
|
|
86
|
+
"iri": "https://www.glossarist.org/ontologies/Symbol",
|
|
87
|
+
"compact": "gloss:Symbol",
|
|
88
|
+
"label": "Symbol",
|
|
89
|
+
"comment": "A non-letter symbol representing a concept.",
|
|
90
|
+
"subClassOf": "gloss:Designation",
|
|
91
|
+
"disjointWith": "gloss:Expression",
|
|
92
|
+
"children": [
|
|
93
|
+
"gloss:LetterSymbol",
|
|
94
|
+
"gloss:GraphicalSymbol"
|
|
95
|
+
],
|
|
96
|
+
"ancestors": [
|
|
97
|
+
"gloss:Designation",
|
|
98
|
+
"xl:Label"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"gloss:LetterSymbol": {
|
|
102
|
+
"iri": "https://www.glossarist.org/ontologies/LetterSymbol",
|
|
103
|
+
"compact": "gloss:LetterSymbol",
|
|
104
|
+
"label": "Letter Symbol",
|
|
105
|
+
"comment": "A single letter used as a symbol.",
|
|
106
|
+
"subClassOf": "gloss:Symbol",
|
|
107
|
+
"disjointWith": null,
|
|
108
|
+
"children": [],
|
|
109
|
+
"ancestors": [
|
|
110
|
+
"gloss:Symbol",
|
|
111
|
+
"gloss:Designation",
|
|
112
|
+
"xl:Label"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"gloss:GraphicalSymbol": {
|
|
116
|
+
"iri": "https://www.glossarist.org/ontologies/GraphicalSymbol",
|
|
117
|
+
"compact": "gloss:GraphicalSymbol",
|
|
118
|
+
"label": "Graphical Symbol",
|
|
119
|
+
"comment": "An iconic or graphical symbol.",
|
|
120
|
+
"subClassOf": "gloss:Symbol",
|
|
121
|
+
"disjointWith": "gloss:LetterSymbol",
|
|
122
|
+
"children": [],
|
|
123
|
+
"ancestors": [
|
|
124
|
+
"gloss:Symbol",
|
|
125
|
+
"gloss:Designation",
|
|
126
|
+
"xl:Label"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"gloss:Pronunciation": {
|
|
130
|
+
"iri": "https://www.glossarist.org/ontologies/Pronunciation",
|
|
131
|
+
"compact": "gloss:Pronunciation",
|
|
132
|
+
"label": "Pronunciation",
|
|
133
|
+
"comment": "A pronunciation or transcription entry for a designation. Supports IPA, romanization, and other transcription systems.",
|
|
134
|
+
"subClassOf": null,
|
|
135
|
+
"disjointWith": null,
|
|
136
|
+
"children": [],
|
|
137
|
+
"ancestors": []
|
|
138
|
+
},
|
|
139
|
+
"gloss:GrammarInfo": {
|
|
140
|
+
"iri": "https://www.glossarist.org/ontologies/GrammarInfo",
|
|
141
|
+
"compact": "gloss:GrammarInfo",
|
|
142
|
+
"label": "Grammar Information",
|
|
143
|
+
"comment": "Grammatical information about a designation: gender, number, part of speech.",
|
|
144
|
+
"subClassOf": null,
|
|
145
|
+
"disjointWith": null,
|
|
146
|
+
"children": [],
|
|
147
|
+
"ancestors": []
|
|
148
|
+
},
|
|
149
|
+
"gloss:DetailedDefinition": {
|
|
150
|
+
"iri": "https://www.glossarist.org/ontologies/DetailedDefinition",
|
|
151
|
+
"compact": "gloss:DetailedDefinition",
|
|
152
|
+
"label": "Detailed Definition",
|
|
153
|
+
"comment": "A definition, note, or example with optional per-item sources. Uses rdf:value for the text content.",
|
|
154
|
+
"subClassOf": null,
|
|
155
|
+
"disjointWith": null,
|
|
156
|
+
"children": [],
|
|
157
|
+
"ancestors": []
|
|
158
|
+
},
|
|
159
|
+
"gloss:ConceptSource": {
|
|
160
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptSource",
|
|
161
|
+
"compact": "gloss:ConceptSource",
|
|
162
|
+
"label": "Concept Source",
|
|
163
|
+
"comment": "Bibliographic source with type (authoritative/lineage), status (identical/modified/...), and an origin citation.",
|
|
164
|
+
"subClassOf": null,
|
|
165
|
+
"disjointWith": null,
|
|
166
|
+
"children": [],
|
|
167
|
+
"ancestors": []
|
|
168
|
+
},
|
|
169
|
+
"gloss:ConceptReference": {
|
|
170
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptReference",
|
|
171
|
+
"compact": "gloss:ConceptReference",
|
|
172
|
+
"label": "Concept Reference",
|
|
173
|
+
"comment": "A typed reference to another concept, either local or external.",
|
|
174
|
+
"subClassOf": null,
|
|
175
|
+
"disjointWith": null,
|
|
176
|
+
"children": [],
|
|
177
|
+
"ancestors": []
|
|
178
|
+
},
|
|
179
|
+
"gloss:RelatedConcept": {
|
|
180
|
+
"iri": "https://www.glossarist.org/ontologies/RelatedConcept",
|
|
181
|
+
"compact": "gloss:RelatedConcept",
|
|
182
|
+
"label": "Related Concept",
|
|
183
|
+
"comment": "A concept with a typed relationship (deprecates, broader, equivalent, etc.).",
|
|
184
|
+
"subClassOf": null,
|
|
185
|
+
"disjointWith": null,
|
|
186
|
+
"children": [],
|
|
187
|
+
"ancestors": []
|
|
188
|
+
},
|
|
189
|
+
"gloss:ConceptDate": {
|
|
190
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptDate",
|
|
191
|
+
"compact": "gloss:ConceptDate",
|
|
192
|
+
"label": "Concept Date",
|
|
193
|
+
"comment": "A date in the concept lifecycle (accepted, amended, retired).",
|
|
194
|
+
"subClassOf": null,
|
|
195
|
+
"disjointWith": null,
|
|
196
|
+
"children": [],
|
|
197
|
+
"ancestors": []
|
|
198
|
+
},
|
|
199
|
+
"gloss:NonVerbalRepresentation": {
|
|
200
|
+
"iri": "https://www.glossarist.org/ontologies/NonVerbalRepresentation",
|
|
201
|
+
"compact": "gloss:NonVerbalRepresentation",
|
|
202
|
+
"label": "Non-Verbal Representation",
|
|
203
|
+
"comment": "Reference to an external image, table, or formula resource (ISO 10241-1 §6.5).",
|
|
204
|
+
"subClassOf": null,
|
|
205
|
+
"disjointWith": null,
|
|
206
|
+
"children": [],
|
|
207
|
+
"ancestors": []
|
|
208
|
+
},
|
|
209
|
+
"gloss:DesignationRelationship": {
|
|
210
|
+
"iri": "https://www.glossarist.org/ontologies/DesignationRelationship",
|
|
211
|
+
"compact": "gloss:DesignationRelationship",
|
|
212
|
+
"label": "Designation Relationship",
|
|
213
|
+
"comment": "A designation-to-designation link within the same concept entry (abbreviated_form_for, short_form_for).",
|
|
214
|
+
"subClassOf": null,
|
|
215
|
+
"disjointWith": null,
|
|
216
|
+
"children": [],
|
|
217
|
+
"ancestors": []
|
|
218
|
+
},
|
|
219
|
+
"gloss:Citation": {
|
|
220
|
+
"iri": "https://www.glossarist.org/ontologies/Citation",
|
|
221
|
+
"compact": "gloss:Citation",
|
|
222
|
+
"label": "Citation",
|
|
223
|
+
"comment": "Bibliographic citation — structured (source/id/version/locality) or unstructured (plain text).",
|
|
224
|
+
"subClassOf": null,
|
|
225
|
+
"disjointWith": null,
|
|
226
|
+
"children": [],
|
|
227
|
+
"ancestors": []
|
|
228
|
+
},
|
|
229
|
+
"gloss:Locality": {
|
|
230
|
+
"iri": "https://www.glossarist.org/ontologies/Locality",
|
|
231
|
+
"compact": "gloss:Locality",
|
|
232
|
+
"label": "Locality",
|
|
233
|
+
"comment": "A locality within a cited document (section, clause, page, etc.).",
|
|
234
|
+
"subClassOf": null,
|
|
235
|
+
"disjointWith": null,
|
|
236
|
+
"children": [],
|
|
237
|
+
"ancestors": []
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"classHierarchyRoots": [
|
|
241
|
+
"gloss:Concept",
|
|
242
|
+
"gloss:ConceptCollection",
|
|
243
|
+
"gloss:LocalizedConcept",
|
|
244
|
+
"gloss:Designation",
|
|
245
|
+
"gloss:Pronunciation",
|
|
246
|
+
"gloss:GrammarInfo",
|
|
247
|
+
"gloss:DetailedDefinition",
|
|
248
|
+
"gloss:ConceptSource",
|
|
249
|
+
"gloss:ConceptReference",
|
|
250
|
+
"gloss:RelatedConcept",
|
|
251
|
+
"gloss:ConceptDate",
|
|
252
|
+
"gloss:NonVerbalRepresentation",
|
|
253
|
+
"gloss:DesignationRelationship",
|
|
254
|
+
"gloss:Citation",
|
|
255
|
+
"gloss:Locality"
|
|
256
|
+
],
|
|
257
|
+
"properties": {
|
|
258
|
+
"gloss:hasLocalization": {
|
|
259
|
+
"iri": "https://www.glossarist.org/ontologies/hasLocalization",
|
|
260
|
+
"compact": "gloss:hasLocalization",
|
|
261
|
+
"label": "has localization",
|
|
262
|
+
"comment": "Links a managed concept to one of its language-specific localizations.",
|
|
263
|
+
"type": "object",
|
|
264
|
+
"domain": "gloss:Concept",
|
|
265
|
+
"domainUnion": null,
|
|
266
|
+
"range": "gloss:LocalizedConcept",
|
|
267
|
+
"rangeUnion": null,
|
|
268
|
+
"inverseOf": "gloss:isLocalizationOf"
|
|
269
|
+
},
|
|
270
|
+
"gloss:isLocalizationOf": {
|
|
271
|
+
"iri": "https://www.glossarist.org/ontologies/isLocalizationOf",
|
|
272
|
+
"compact": "gloss:isLocalizationOf",
|
|
273
|
+
"label": "is localization of",
|
|
274
|
+
"comment": "Links a localized concept back to its managed concept.",
|
|
275
|
+
"type": "object",
|
|
276
|
+
"domain": "gloss:LocalizedConcept",
|
|
277
|
+
"domainUnion": null,
|
|
278
|
+
"range": "gloss:Concept",
|
|
279
|
+
"rangeUnion": null,
|
|
280
|
+
"inverseOf": "gloss:hasLocalization"
|
|
281
|
+
},
|
|
282
|
+
"gloss:hasStatus": {
|
|
283
|
+
"iri": "https://www.glossarist.org/ontologies/hasStatus",
|
|
284
|
+
"compact": "gloss:hasStatus",
|
|
285
|
+
"label": "has status",
|
|
286
|
+
"comment": "Concept lifecycle status (draft, valid, superseded, etc.).",
|
|
287
|
+
"type": "object",
|
|
288
|
+
"domain": "gloss:Concept",
|
|
289
|
+
"domainUnion": null,
|
|
290
|
+
"range": "skos:Concept",
|
|
291
|
+
"rangeUnion": null,
|
|
292
|
+
"inverseOf": null
|
|
293
|
+
},
|
|
294
|
+
"gloss:hasDomain": {
|
|
295
|
+
"iri": "https://www.glossarist.org/ontologies/hasDomain",
|
|
296
|
+
"compact": "gloss:hasDomain",
|
|
297
|
+
"label": "has domain",
|
|
298
|
+
"comment": "Links a concept to a domain (subject area) classification.",
|
|
299
|
+
"type": "object",
|
|
300
|
+
"domain": "gloss:Concept",
|
|
301
|
+
"domainUnion": null,
|
|
302
|
+
"range": "gloss:ConceptReference",
|
|
303
|
+
"rangeUnion": null,
|
|
304
|
+
"inverseOf": null
|
|
305
|
+
},
|
|
306
|
+
"gloss:hasRelatedConcept": {
|
|
307
|
+
"iri": "https://www.glossarist.org/ontologies/hasRelatedConcept",
|
|
308
|
+
"compact": "gloss:hasRelatedConcept",
|
|
309
|
+
"label": "has related concept",
|
|
310
|
+
"comment": "Links a concept to a related concept with a typed relationship.",
|
|
311
|
+
"type": "object",
|
|
312
|
+
"domain": "gloss:Concept",
|
|
313
|
+
"domainUnion": null,
|
|
314
|
+
"range": "gloss:RelatedConcept",
|
|
315
|
+
"rangeUnion": null,
|
|
316
|
+
"inverseOf": null
|
|
317
|
+
},
|
|
318
|
+
"gloss:hasDate": {
|
|
319
|
+
"iri": "https://www.glossarist.org/ontologies/hasDate",
|
|
320
|
+
"compact": "gloss:hasDate",
|
|
321
|
+
"label": "has date",
|
|
322
|
+
"comment": "A date in the concept lifecycle.",
|
|
323
|
+
"type": "object",
|
|
324
|
+
"domain": "gloss:Concept",
|
|
325
|
+
"domainUnion": null,
|
|
326
|
+
"range": "gloss:ConceptDate",
|
|
327
|
+
"rangeUnion": null,
|
|
328
|
+
"inverseOf": null
|
|
329
|
+
},
|
|
330
|
+
"gloss:hasSource": {
|
|
331
|
+
"iri": "https://www.glossarist.org/ontologies/hasSource",
|
|
332
|
+
"compact": "gloss:hasSource",
|
|
333
|
+
"label": "has source",
|
|
334
|
+
"comment": "Links a concept to a bibliographic source.",
|
|
335
|
+
"type": "object",
|
|
336
|
+
"domain": "gloss:Concept",
|
|
337
|
+
"domainUnion": null,
|
|
338
|
+
"range": "gloss:ConceptSource",
|
|
339
|
+
"rangeUnion": null,
|
|
340
|
+
"inverseOf": null
|
|
341
|
+
},
|
|
342
|
+
"gloss:identifier": {
|
|
343
|
+
"iri": "https://www.glossarist.org/ontologies/identifier",
|
|
344
|
+
"compact": "gloss:identifier",
|
|
345
|
+
"label": "identifier",
|
|
346
|
+
"comment": "The management identifier for the concept.",
|
|
347
|
+
"type": "datatype",
|
|
348
|
+
"domain": "gloss:Concept",
|
|
349
|
+
"domainUnion": null,
|
|
350
|
+
"range": "xsd:string",
|
|
351
|
+
"rangeUnion": null,
|
|
352
|
+
"inverseOf": null
|
|
353
|
+
},
|
|
354
|
+
"gloss:hasEntryStatus": {
|
|
355
|
+
"iri": "https://www.glossarist.org/ontologies/hasEntryStatus",
|
|
356
|
+
"compact": "gloss:hasEntryStatus",
|
|
357
|
+
"label": "has entry status",
|
|
358
|
+
"comment": "Localized entry lifecycle status (valid, not_valid, superseded, retired).",
|
|
359
|
+
"type": "object",
|
|
360
|
+
"domain": "gloss:LocalizedConcept",
|
|
361
|
+
"domainUnion": null,
|
|
362
|
+
"range": "skos:Concept",
|
|
363
|
+
"rangeUnion": null,
|
|
364
|
+
"inverseOf": null
|
|
365
|
+
},
|
|
366
|
+
"gloss:hasDesignation": {
|
|
367
|
+
"iri": "https://www.glossarist.org/ontologies/hasDesignation",
|
|
368
|
+
"compact": "gloss:hasDesignation",
|
|
369
|
+
"label": "has designation",
|
|
370
|
+
"comment": "Links a localized concept to one of its designations (terms/symbols).",
|
|
371
|
+
"type": "object",
|
|
372
|
+
"domain": "gloss:LocalizedConcept",
|
|
373
|
+
"domainUnion": null,
|
|
374
|
+
"range": "gloss:Designation",
|
|
375
|
+
"rangeUnion": null,
|
|
376
|
+
"inverseOf": null
|
|
377
|
+
},
|
|
378
|
+
"gloss:hasDefinition": {
|
|
379
|
+
"iri": "https://www.glossarist.org/ontologies/hasDefinition",
|
|
380
|
+
"compact": "gloss:hasDefinition",
|
|
381
|
+
"label": "has definition",
|
|
382
|
+
"comment": "Links a localized concept to a definition.",
|
|
383
|
+
"type": "object",
|
|
384
|
+
"domain": "gloss:LocalizedConcept",
|
|
385
|
+
"domainUnion": null,
|
|
386
|
+
"range": "gloss:DetailedDefinition",
|
|
387
|
+
"rangeUnion": null,
|
|
388
|
+
"inverseOf": null
|
|
389
|
+
},
|
|
390
|
+
"gloss:hasNote": {
|
|
391
|
+
"iri": "https://www.glossarist.org/ontologies/hasNote",
|
|
392
|
+
"compact": "gloss:hasNote",
|
|
393
|
+
"label": "has note",
|
|
394
|
+
"comment": "Links a localized concept to a supplementary note.",
|
|
395
|
+
"type": "object",
|
|
396
|
+
"domain": "gloss:LocalizedConcept",
|
|
397
|
+
"domainUnion": null,
|
|
398
|
+
"range": "gloss:DetailedDefinition",
|
|
399
|
+
"rangeUnion": null,
|
|
400
|
+
"inverseOf": null
|
|
401
|
+
},
|
|
402
|
+
"gloss:hasExample": {
|
|
403
|
+
"iri": "https://www.glossarist.org/ontologies/hasExample",
|
|
404
|
+
"compact": "gloss:hasExample",
|
|
405
|
+
"label": "has example",
|
|
406
|
+
"comment": "Links a localized concept to an illustrative example.",
|
|
407
|
+
"type": "object",
|
|
408
|
+
"domain": "gloss:LocalizedConcept",
|
|
409
|
+
"domainUnion": null,
|
|
410
|
+
"range": "gloss:DetailedDefinition",
|
|
411
|
+
"rangeUnion": null,
|
|
412
|
+
"inverseOf": null
|
|
413
|
+
},
|
|
414
|
+
"gloss:hasNonVerbalRep": {
|
|
415
|
+
"iri": "https://www.glossarist.org/ontologies/hasNonVerbalRep",
|
|
416
|
+
"compact": "gloss:hasNonVerbalRep",
|
|
417
|
+
"label": "has non-verbal representation",
|
|
418
|
+
"comment": "Links a localized concept to a non-verbal representation resource.",
|
|
419
|
+
"type": "object",
|
|
420
|
+
"domain": "gloss:LocalizedConcept",
|
|
421
|
+
"domainUnion": null,
|
|
422
|
+
"range": "gloss:NonVerbalRepresentation",
|
|
423
|
+
"rangeUnion": null,
|
|
424
|
+
"inverseOf": null
|
|
425
|
+
},
|
|
426
|
+
"gloss:domain": {
|
|
427
|
+
"iri": "https://www.glossarist.org/ontologies/domain",
|
|
428
|
+
"compact": "gloss:domain",
|
|
429
|
+
"label": "domain",
|
|
430
|
+
"comment": "Per-language domain URI reference.",
|
|
431
|
+
"type": "datatype",
|
|
432
|
+
"domain": "gloss:LocalizedConcept",
|
|
433
|
+
"domainUnion": null,
|
|
434
|
+
"range": "xsd:anyURI",
|
|
435
|
+
"rangeUnion": null,
|
|
436
|
+
"inverseOf": null
|
|
437
|
+
},
|
|
438
|
+
"gloss:release": {
|
|
439
|
+
"iri": "https://www.glossarist.org/ontologies/release",
|
|
440
|
+
"compact": "gloss:release",
|
|
441
|
+
"label": "release",
|
|
442
|
+
"comment": "Release version of this localized concept.",
|
|
443
|
+
"type": "datatype",
|
|
444
|
+
"domain": "gloss:LocalizedConcept",
|
|
445
|
+
"domainUnion": null,
|
|
446
|
+
"range": "xsd:string",
|
|
447
|
+
"rangeUnion": null,
|
|
448
|
+
"inverseOf": null
|
|
449
|
+
},
|
|
450
|
+
"gloss:lineageSimilarity": {
|
|
451
|
+
"iri": "https://www.glossarist.org/ontologies/lineageSimilarity",
|
|
452
|
+
"compact": "gloss:lineageSimilarity",
|
|
453
|
+
"label": "lineage similarity",
|
|
454
|
+
"comment": "Similarity percentage to the lineage source.",
|
|
455
|
+
"type": "datatype",
|
|
456
|
+
"domain": "gloss:LocalizedConcept",
|
|
457
|
+
"domainUnion": null,
|
|
458
|
+
"range": "xsd:integer",
|
|
459
|
+
"rangeUnion": null,
|
|
460
|
+
"inverseOf": null
|
|
461
|
+
},
|
|
462
|
+
"gloss:normativeStatus": {
|
|
463
|
+
"iri": "https://www.glossarist.org/ontologies/normativeStatus",
|
|
464
|
+
"compact": "gloss:normativeStatus",
|
|
465
|
+
"label": "normative status",
|
|
466
|
+
"comment": "Normative status of a designation (preferred, admitted, deprecated, superseded). Preferred designations SHOULD also be typed as iso-thes:PreferredTerm; others as iso-thes:SimpleNonPreferredTerm.",
|
|
467
|
+
"type": "object",
|
|
468
|
+
"domain": "gloss:Designation",
|
|
469
|
+
"domainUnion": null,
|
|
470
|
+
"range": "skos:Concept",
|
|
471
|
+
"rangeUnion": null,
|
|
472
|
+
"inverseOf": null
|
|
473
|
+
},
|
|
474
|
+
"gloss:hasPronunciation": {
|
|
475
|
+
"iri": "https://www.glossarist.org/ontologies/hasPronunciation",
|
|
476
|
+
"compact": "gloss:hasPronunciation",
|
|
477
|
+
"label": "has pronunciation",
|
|
478
|
+
"comment": null,
|
|
479
|
+
"type": "object",
|
|
480
|
+
"domain": "gloss:Designation",
|
|
481
|
+
"domainUnion": null,
|
|
482
|
+
"range": "gloss:Pronunciation",
|
|
483
|
+
"rangeUnion": null,
|
|
484
|
+
"inverseOf": null
|
|
485
|
+
},
|
|
486
|
+
"gloss:hasTermType": {
|
|
487
|
+
"iri": "https://www.glossarist.org/ontologies/hasTermType",
|
|
488
|
+
"compact": "gloss:hasTermType",
|
|
489
|
+
"label": "has term type",
|
|
490
|
+
"comment": "ISO 12620 term type classification.",
|
|
491
|
+
"type": "object",
|
|
492
|
+
"domain": "gloss:Designation",
|
|
493
|
+
"domainUnion": null,
|
|
494
|
+
"range": "skos:Concept",
|
|
495
|
+
"rangeUnion": null,
|
|
496
|
+
"inverseOf": null
|
|
497
|
+
},
|
|
498
|
+
"gloss:hasDesignationRel": {
|
|
499
|
+
"iri": "https://www.glossarist.org/ontologies/hasDesignationRel",
|
|
500
|
+
"compact": "gloss:hasDesignationRel",
|
|
501
|
+
"label": "has designation relationship",
|
|
502
|
+
"comment": "Designation-to-designation link (abbreviated_form_for, short_form_for).",
|
|
503
|
+
"type": "object",
|
|
504
|
+
"domain": "gloss:Designation",
|
|
505
|
+
"domainUnion": null,
|
|
506
|
+
"range": "gloss:DesignationRelationship",
|
|
507
|
+
"rangeUnion": null,
|
|
508
|
+
"inverseOf": null
|
|
509
|
+
},
|
|
510
|
+
"gloss:hasGrammarInfo": {
|
|
511
|
+
"iri": "https://www.glossarist.org/ontologies/hasGrammarInfo",
|
|
512
|
+
"compact": "gloss:hasGrammarInfo",
|
|
513
|
+
"label": "has grammar info",
|
|
514
|
+
"comment": null,
|
|
515
|
+
"type": "object",
|
|
516
|
+
"domain": "gloss:Expression",
|
|
517
|
+
"domainUnion": null,
|
|
518
|
+
"range": "gloss:GrammarInfo",
|
|
519
|
+
"rangeUnion": null,
|
|
520
|
+
"inverseOf": null
|
|
521
|
+
},
|
|
522
|
+
"gloss:geographicalArea": {
|
|
523
|
+
"iri": "https://www.glossarist.org/ontologies/geographicalArea",
|
|
524
|
+
"compact": "gloss:geographicalArea",
|
|
525
|
+
"label": "geographical area",
|
|
526
|
+
"comment": "ISO 3166-1 alpha-2 country code.",
|
|
527
|
+
"type": "datatype",
|
|
528
|
+
"domain": "gloss:Designation",
|
|
529
|
+
"domainUnion": null,
|
|
530
|
+
"range": "xsd:string",
|
|
531
|
+
"rangeUnion": null,
|
|
532
|
+
"inverseOf": null
|
|
533
|
+
},
|
|
534
|
+
"gloss:isInternational": {
|
|
535
|
+
"iri": "https://www.glossarist.org/ontologies/isInternational",
|
|
536
|
+
"compact": "gloss:isInternational",
|
|
537
|
+
"label": "is international",
|
|
538
|
+
"comment": "Whether the designation is valid across all languages/regions.",
|
|
539
|
+
"type": "datatype",
|
|
540
|
+
"domain": "gloss:Designation",
|
|
541
|
+
"domainUnion": null,
|
|
542
|
+
"range": "xsd:boolean",
|
|
543
|
+
"rangeUnion": null,
|
|
544
|
+
"inverseOf": null
|
|
545
|
+
},
|
|
546
|
+
"gloss:isAbsent": {
|
|
547
|
+
"iri": "https://www.glossarist.org/ontologies/isAbsent",
|
|
548
|
+
"compact": "gloss:isAbsent",
|
|
549
|
+
"label": "is absent",
|
|
550
|
+
"comment": "The designation is explicitly absent for this concept in this language.",
|
|
551
|
+
"type": "datatype",
|
|
552
|
+
"domain": "gloss:Designation",
|
|
553
|
+
"domainUnion": null,
|
|
554
|
+
"range": "xsd:boolean",
|
|
555
|
+
"rangeUnion": null,
|
|
556
|
+
"inverseOf": null
|
|
557
|
+
},
|
|
558
|
+
"gloss:prefix": {
|
|
559
|
+
"iri": "https://www.glossarist.org/ontologies/prefix",
|
|
560
|
+
"compact": "gloss:prefix",
|
|
561
|
+
"label": "prefix",
|
|
562
|
+
"comment": null,
|
|
563
|
+
"type": "datatype",
|
|
564
|
+
"domain": "gloss:Expression",
|
|
565
|
+
"domainUnion": null,
|
|
566
|
+
"range": "xsd:string",
|
|
567
|
+
"rangeUnion": null,
|
|
568
|
+
"inverseOf": null
|
|
569
|
+
},
|
|
570
|
+
"gloss:usageInfo": {
|
|
571
|
+
"iri": "https://www.glossarist.org/ontologies/usageInfo",
|
|
572
|
+
"compact": "gloss:usageInfo",
|
|
573
|
+
"label": "usage info",
|
|
574
|
+
"comment": "Disambiguation context for homonymous designations.",
|
|
575
|
+
"type": "datatype",
|
|
576
|
+
"domain": "gloss:Expression",
|
|
577
|
+
"domainUnion": null,
|
|
578
|
+
"range": "xsd:string",
|
|
579
|
+
"rangeUnion": null,
|
|
580
|
+
"inverseOf": null
|
|
581
|
+
},
|
|
582
|
+
"gloss:fieldOfApplication": {
|
|
583
|
+
"iri": "https://www.glossarist.org/ontologies/fieldOfApplication",
|
|
584
|
+
"compact": "gloss:fieldOfApplication",
|
|
585
|
+
"label": "field of application",
|
|
586
|
+
"comment": "Subject field in which the designation is used.",
|
|
587
|
+
"type": "datatype",
|
|
588
|
+
"domain": "gloss:Expression",
|
|
589
|
+
"domainUnion": null,
|
|
590
|
+
"range": "xsd:string",
|
|
591
|
+
"rangeUnion": null,
|
|
592
|
+
"inverseOf": null
|
|
593
|
+
},
|
|
594
|
+
"gloss:isAcronym": {
|
|
595
|
+
"iri": "https://www.glossarist.org/ontologies/isAcronym",
|
|
596
|
+
"compact": "gloss:isAcronym",
|
|
597
|
+
"label": "is acronym",
|
|
598
|
+
"comment": null,
|
|
599
|
+
"type": "datatype",
|
|
600
|
+
"domain": "gloss:Abbreviation",
|
|
601
|
+
"domainUnion": null,
|
|
602
|
+
"range": "xsd:boolean",
|
|
603
|
+
"rangeUnion": null,
|
|
604
|
+
"inverseOf": null
|
|
605
|
+
},
|
|
606
|
+
"gloss:isInitialism": {
|
|
607
|
+
"iri": "https://www.glossarist.org/ontologies/isInitialism",
|
|
608
|
+
"compact": "gloss:isInitialism",
|
|
609
|
+
"label": "is initialism",
|
|
610
|
+
"comment": null,
|
|
611
|
+
"type": "datatype",
|
|
612
|
+
"domain": "gloss:Abbreviation",
|
|
613
|
+
"domainUnion": null,
|
|
614
|
+
"range": "xsd:boolean",
|
|
615
|
+
"rangeUnion": null,
|
|
616
|
+
"inverseOf": null
|
|
617
|
+
},
|
|
618
|
+
"gloss:isTruncation": {
|
|
619
|
+
"iri": "https://www.glossarist.org/ontologies/isTruncation",
|
|
620
|
+
"compact": "gloss:isTruncation",
|
|
621
|
+
"label": "is truncation",
|
|
622
|
+
"comment": null,
|
|
623
|
+
"type": "datatype",
|
|
624
|
+
"domain": "gloss:Abbreviation",
|
|
625
|
+
"domainUnion": null,
|
|
626
|
+
"range": "xsd:boolean",
|
|
627
|
+
"rangeUnion": null,
|
|
628
|
+
"inverseOf": null
|
|
629
|
+
},
|
|
630
|
+
"gloss:text": {
|
|
631
|
+
"iri": "https://www.glossarist.org/ontologies/text",
|
|
632
|
+
"compact": "gloss:text",
|
|
633
|
+
"label": "text",
|
|
634
|
+
"comment": "Textual representation of a letter or graphical symbol.",
|
|
635
|
+
"type": "datatype",
|
|
636
|
+
"domain": "[",
|
|
637
|
+
"domainUnion": [
|
|
638
|
+
"gloss:LetterSymbol",
|
|
639
|
+
"gloss:GraphicalSymbol"
|
|
640
|
+
],
|
|
641
|
+
"range": "xsd:string",
|
|
642
|
+
"rangeUnion": null,
|
|
643
|
+
"inverseOf": null
|
|
644
|
+
},
|
|
645
|
+
"gloss:image": {
|
|
646
|
+
"iri": "https://www.glossarist.org/ontologies/image",
|
|
647
|
+
"compact": "gloss:image",
|
|
648
|
+
"label": "image",
|
|
649
|
+
"comment": "URI to the graphical symbol image.",
|
|
650
|
+
"type": "datatype",
|
|
651
|
+
"domain": "gloss:GraphicalSymbol",
|
|
652
|
+
"domainUnion": null,
|
|
653
|
+
"range": "xsd:anyURI",
|
|
654
|
+
"rangeUnion": null,
|
|
655
|
+
"inverseOf": null
|
|
656
|
+
},
|
|
657
|
+
"gloss:pronunciationContent": {
|
|
658
|
+
"iri": "https://www.glossarist.org/ontologies/pronunciationContent",
|
|
659
|
+
"compact": "gloss:pronunciationContent",
|
|
660
|
+
"label": "pronunciation content",
|
|
661
|
+
"comment": "Phonetic or transcribed text.",
|
|
662
|
+
"type": "datatype",
|
|
663
|
+
"domain": "gloss:Pronunciation",
|
|
664
|
+
"domainUnion": null,
|
|
665
|
+
"range": "xsd:string",
|
|
666
|
+
"rangeUnion": null,
|
|
667
|
+
"inverseOf": null
|
|
668
|
+
},
|
|
669
|
+
"gloss:pronunciationLanguage": {
|
|
670
|
+
"iri": "https://www.glossarist.org/ontologies/pronunciationLanguage",
|
|
671
|
+
"compact": "gloss:pronunciationLanguage",
|
|
672
|
+
"label": "pronunciation language",
|
|
673
|
+
"comment": "ISO 639 three-character language code.",
|
|
674
|
+
"type": "datatype",
|
|
675
|
+
"domain": "gloss:Pronunciation",
|
|
676
|
+
"domainUnion": null,
|
|
677
|
+
"range": "xsd:string",
|
|
678
|
+
"rangeUnion": null,
|
|
679
|
+
"inverseOf": null
|
|
680
|
+
},
|
|
681
|
+
"gloss:pronunciationScript": {
|
|
682
|
+
"iri": "https://www.glossarist.org/ontologies/pronunciationScript",
|
|
683
|
+
"compact": "gloss:pronunciationScript",
|
|
684
|
+
"label": "pronunciation script",
|
|
685
|
+
"comment": "ISO 15924 four-letter script code.",
|
|
686
|
+
"type": "datatype",
|
|
687
|
+
"domain": "gloss:Pronunciation",
|
|
688
|
+
"domainUnion": null,
|
|
689
|
+
"range": "xsd:string",
|
|
690
|
+
"rangeUnion": null,
|
|
691
|
+
"inverseOf": null
|
|
692
|
+
},
|
|
693
|
+
"gloss:pronunciationCountry": {
|
|
694
|
+
"iri": "https://www.glossarist.org/ontologies/pronunciationCountry",
|
|
695
|
+
"compact": "gloss:pronunciationCountry",
|
|
696
|
+
"label": "pronunciation country",
|
|
697
|
+
"comment": "ISO 3166-1 alpha-2 country code.",
|
|
698
|
+
"type": "datatype",
|
|
699
|
+
"domain": "gloss:Pronunciation",
|
|
700
|
+
"domainUnion": null,
|
|
701
|
+
"range": "xsd:string",
|
|
702
|
+
"rangeUnion": null,
|
|
703
|
+
"inverseOf": null
|
|
704
|
+
},
|
|
705
|
+
"gloss:pronunciationSystem": {
|
|
706
|
+
"iri": "https://www.glossarist.org/ontologies/pronunciationSystem",
|
|
707
|
+
"compact": "gloss:pronunciationSystem",
|
|
708
|
+
"label": "pronunciation system",
|
|
709
|
+
"comment": "ISO 24229 conversion system code or simple identifier (e.g. IPA).",
|
|
710
|
+
"type": "datatype",
|
|
711
|
+
"domain": "gloss:Pronunciation",
|
|
712
|
+
"domainUnion": null,
|
|
713
|
+
"range": "xsd:string",
|
|
714
|
+
"rangeUnion": null,
|
|
715
|
+
"inverseOf": null
|
|
716
|
+
},
|
|
717
|
+
"gloss:relationshipType": {
|
|
718
|
+
"iri": "https://www.glossarist.org/ontologies/relationshipType",
|
|
719
|
+
"compact": "gloss:relationshipType",
|
|
720
|
+
"label": "relationship type",
|
|
721
|
+
"comment": "The type of relationship between concepts.",
|
|
722
|
+
"type": "object",
|
|
723
|
+
"domain": "gloss:RelatedConcept",
|
|
724
|
+
"domainUnion": null,
|
|
725
|
+
"range": "skos:Concept",
|
|
726
|
+
"rangeUnion": null,
|
|
727
|
+
"inverseOf": null
|
|
728
|
+
},
|
|
729
|
+
"gloss:relationshipContent": {
|
|
730
|
+
"iri": "https://www.glossarist.org/ontologies/relationshipContent",
|
|
731
|
+
"compact": "gloss:relationshipContent",
|
|
732
|
+
"label": "relationship content",
|
|
733
|
+
"comment": "Free-text description of the relationship.",
|
|
734
|
+
"type": "datatype",
|
|
735
|
+
"domain": "gloss:RelatedConcept",
|
|
736
|
+
"domainUnion": null,
|
|
737
|
+
"range": "xsd:string",
|
|
738
|
+
"rangeUnion": null,
|
|
739
|
+
"inverseOf": null
|
|
740
|
+
},
|
|
741
|
+
"gloss:relationshipRef": {
|
|
742
|
+
"iri": "https://www.glossarist.org/ontologies/relationshipRef",
|
|
743
|
+
"compact": "gloss:relationshipRef",
|
|
744
|
+
"label": "relationship reference",
|
|
745
|
+
"comment": "Citation reference for the related concept.",
|
|
746
|
+
"type": "object",
|
|
747
|
+
"domain": "gloss:RelatedConcept",
|
|
748
|
+
"domainUnion": null,
|
|
749
|
+
"range": "gloss:Citation",
|
|
750
|
+
"rangeUnion": null,
|
|
751
|
+
"inverseOf": null
|
|
752
|
+
},
|
|
753
|
+
"gloss:refType": {
|
|
754
|
+
"iri": "https://www.glossarist.org/ontologies/refType",
|
|
755
|
+
"compact": "gloss:refType",
|
|
756
|
+
"label": "reference type",
|
|
757
|
+
"comment": "Type of reference: local, designation, urn, domain.",
|
|
758
|
+
"type": "datatype",
|
|
759
|
+
"domain": "gloss:ConceptReference",
|
|
760
|
+
"domainUnion": null,
|
|
761
|
+
"range": "xsd:string",
|
|
762
|
+
"rangeUnion": null,
|
|
763
|
+
"inverseOf": null
|
|
764
|
+
},
|
|
765
|
+
"gloss:conceptId": {
|
|
766
|
+
"iri": "https://www.glossarist.org/ontologies/conceptId",
|
|
767
|
+
"compact": "gloss:conceptId",
|
|
768
|
+
"label": "concept identifier",
|
|
769
|
+
"comment": "Target concept identifier.",
|
|
770
|
+
"type": "datatype",
|
|
771
|
+
"domain": "gloss:ConceptReference",
|
|
772
|
+
"domainUnion": null,
|
|
773
|
+
"range": "xsd:string",
|
|
774
|
+
"rangeUnion": null,
|
|
775
|
+
"inverseOf": null
|
|
776
|
+
},
|
|
777
|
+
"gloss:sourceUri": {
|
|
778
|
+
"iri": "https://www.glossarist.org/ontologies/sourceUri",
|
|
779
|
+
"compact": "gloss:sourceUri",
|
|
780
|
+
"label": "source URI",
|
|
781
|
+
"comment": "Source registry URN prefix for external references.",
|
|
782
|
+
"type": "datatype",
|
|
783
|
+
"domain": "gloss:ConceptReference",
|
|
784
|
+
"domainUnion": null,
|
|
785
|
+
"range": "xsd:anyURI",
|
|
786
|
+
"rangeUnion": null,
|
|
787
|
+
"inverseOf": null
|
|
788
|
+
},
|
|
789
|
+
"gloss:urn": {
|
|
790
|
+
"iri": "https://www.glossarist.org/ontologies/urn",
|
|
791
|
+
"compact": "gloss:urn",
|
|
792
|
+
"label": "URN",
|
|
793
|
+
"comment": "Direct URN reference to the target concept.",
|
|
794
|
+
"type": "datatype",
|
|
795
|
+
"domain": "gloss:ConceptReference",
|
|
796
|
+
"domainUnion": null,
|
|
797
|
+
"range": "xsd:anyURI",
|
|
798
|
+
"rangeUnion": null,
|
|
799
|
+
"inverseOf": null
|
|
800
|
+
},
|
|
801
|
+
"gloss:sourceType": {
|
|
802
|
+
"iri": "https://www.glossarist.org/ontologies/sourceType",
|
|
803
|
+
"compact": "gloss:sourceType",
|
|
804
|
+
"label": "source type",
|
|
805
|
+
"comment": "Type of source: authoritative or lineage.",
|
|
806
|
+
"type": "object",
|
|
807
|
+
"domain": "gloss:ConceptSource",
|
|
808
|
+
"domainUnion": null,
|
|
809
|
+
"range": "skos:Concept",
|
|
810
|
+
"rangeUnion": null,
|
|
811
|
+
"inverseOf": null
|
|
812
|
+
},
|
|
813
|
+
"gloss:sourceStatus": {
|
|
814
|
+
"iri": "https://www.glossarist.org/ontologies/sourceStatus",
|
|
815
|
+
"compact": "gloss:sourceStatus",
|
|
816
|
+
"label": "source status",
|
|
817
|
+
"comment": "Status relative to source: identical, modified, etc.",
|
|
818
|
+
"type": "object",
|
|
819
|
+
"domain": "gloss:ConceptSource",
|
|
820
|
+
"domainUnion": null,
|
|
821
|
+
"range": "skos:Concept",
|
|
822
|
+
"rangeUnion": null,
|
|
823
|
+
"inverseOf": null
|
|
824
|
+
},
|
|
825
|
+
"gloss:sourceOrigin": {
|
|
826
|
+
"iri": "https://www.glossarist.org/ontologies/sourceOrigin",
|
|
827
|
+
"compact": "gloss:sourceOrigin",
|
|
828
|
+
"label": "source origin",
|
|
829
|
+
"comment": "The bibliographic citation from which this concept was sourced.",
|
|
830
|
+
"type": "object",
|
|
831
|
+
"domain": "gloss:ConceptSource",
|
|
832
|
+
"domainUnion": null,
|
|
833
|
+
"range": "gloss:Citation",
|
|
834
|
+
"rangeUnion": null,
|
|
835
|
+
"inverseOf": null
|
|
836
|
+
},
|
|
837
|
+
"gloss:modification": {
|
|
838
|
+
"iri": "https://www.glossarist.org/ontologies/modification",
|
|
839
|
+
"compact": "gloss:modification",
|
|
840
|
+
"label": "modification",
|
|
841
|
+
"comment": "How the concept was modified from the source.",
|
|
842
|
+
"type": "datatype",
|
|
843
|
+
"domain": "gloss:ConceptSource",
|
|
844
|
+
"domainUnion": null,
|
|
845
|
+
"range": "xsd:string",
|
|
846
|
+
"rangeUnion": null,
|
|
847
|
+
"inverseOf": null
|
|
848
|
+
},
|
|
849
|
+
"gloss:citationText": {
|
|
850
|
+
"iri": "https://www.glossarist.org/ontologies/citationText",
|
|
851
|
+
"compact": "gloss:citationText",
|
|
852
|
+
"label": "citation text",
|
|
853
|
+
"comment": "Unstructured (plain text) reference.",
|
|
854
|
+
"type": "datatype",
|
|
855
|
+
"domain": "gloss:Citation",
|
|
856
|
+
"domainUnion": null,
|
|
857
|
+
"range": "xsd:string",
|
|
858
|
+
"rangeUnion": null,
|
|
859
|
+
"inverseOf": null
|
|
860
|
+
},
|
|
861
|
+
"gloss:citationSource": {
|
|
862
|
+
"iri": "https://www.glossarist.org/ontologies/citationSource",
|
|
863
|
+
"compact": "gloss:citationSource",
|
|
864
|
+
"label": "citation source",
|
|
865
|
+
"comment": "Source document identifier (e.g., ISO, IEC).",
|
|
866
|
+
"type": "datatype",
|
|
867
|
+
"domain": "gloss:Citation",
|
|
868
|
+
"domainUnion": null,
|
|
869
|
+
"range": "xsd:string",
|
|
870
|
+
"rangeUnion": null,
|
|
871
|
+
"inverseOf": null
|
|
872
|
+
},
|
|
873
|
+
"gloss:citationId": {
|
|
874
|
+
"iri": "https://www.glossarist.org/ontologies/citationId",
|
|
875
|
+
"compact": "gloss:citationId",
|
|
876
|
+
"label": "citation identifier",
|
|
877
|
+
"comment": "Document identifier in a structured reference.",
|
|
878
|
+
"type": "datatype",
|
|
879
|
+
"domain": "gloss:Citation",
|
|
880
|
+
"domainUnion": null,
|
|
881
|
+
"range": "xsd:string",
|
|
882
|
+
"rangeUnion": null,
|
|
883
|
+
"inverseOf": null
|
|
884
|
+
},
|
|
885
|
+
"gloss:citationVersion": {
|
|
886
|
+
"iri": "https://www.glossarist.org/ontologies/citationVersion",
|
|
887
|
+
"compact": "gloss:citationVersion",
|
|
888
|
+
"label": "citation version",
|
|
889
|
+
"comment": "Document version in a structured reference.",
|
|
890
|
+
"type": "datatype",
|
|
891
|
+
"domain": "gloss:Citation",
|
|
892
|
+
"domainUnion": null,
|
|
893
|
+
"range": "xsd:string",
|
|
894
|
+
"rangeUnion": null,
|
|
895
|
+
"inverseOf": null
|
|
896
|
+
},
|
|
897
|
+
"gloss:citationLink": {
|
|
898
|
+
"iri": "https://www.glossarist.org/ontologies/citationLink",
|
|
899
|
+
"compact": "gloss:citationLink",
|
|
900
|
+
"label": "citation link",
|
|
901
|
+
"comment": "URL link to the source document.",
|
|
902
|
+
"type": "datatype",
|
|
903
|
+
"domain": "gloss:Citation",
|
|
904
|
+
"domainUnion": null,
|
|
905
|
+
"range": "xsd:anyURI",
|
|
906
|
+
"rangeUnion": null,
|
|
907
|
+
"inverseOf": null
|
|
908
|
+
},
|
|
909
|
+
"gloss:hasLocality": {
|
|
910
|
+
"iri": "https://www.glossarist.org/ontologies/hasLocality",
|
|
911
|
+
"compact": "gloss:hasLocality",
|
|
912
|
+
"label": "has locality",
|
|
913
|
+
"comment": null,
|
|
914
|
+
"type": "object",
|
|
915
|
+
"domain": "gloss:Citation",
|
|
916
|
+
"domainUnion": null,
|
|
917
|
+
"range": "gloss:Locality",
|
|
918
|
+
"rangeUnion": null,
|
|
919
|
+
"inverseOf": null
|
|
920
|
+
},
|
|
921
|
+
"gloss:dateValue": {
|
|
922
|
+
"iri": "https://www.glossarist.org/ontologies/dateValue",
|
|
923
|
+
"compact": "gloss:dateValue",
|
|
924
|
+
"label": "date value",
|
|
925
|
+
"comment": null,
|
|
926
|
+
"type": "datatype",
|
|
927
|
+
"domain": "gloss:ConceptDate",
|
|
928
|
+
"domainUnion": null,
|
|
929
|
+
"range": "xsd:dateTime",
|
|
930
|
+
"rangeUnion": null,
|
|
931
|
+
"inverseOf": null
|
|
932
|
+
},
|
|
933
|
+
"gloss:dateType": {
|
|
934
|
+
"iri": "https://www.glossarist.org/ontologies/dateType",
|
|
935
|
+
"compact": "gloss:dateType",
|
|
936
|
+
"label": "date type",
|
|
937
|
+
"comment": "Kind of lifecycle event: accepted, amended, retired.",
|
|
938
|
+
"type": "object",
|
|
939
|
+
"domain": "gloss:ConceptDate",
|
|
940
|
+
"domainUnion": null,
|
|
941
|
+
"range": "skos:Concept",
|
|
942
|
+
"rangeUnion": null,
|
|
943
|
+
"inverseOf": null
|
|
944
|
+
},
|
|
945
|
+
"gloss:representationType": {
|
|
946
|
+
"iri": "https://www.glossarist.org/ontologies/representationType",
|
|
947
|
+
"compact": "gloss:representationType",
|
|
948
|
+
"label": "representation type",
|
|
949
|
+
"comment": "Type of representation: image, table, or formula.",
|
|
950
|
+
"type": "datatype",
|
|
951
|
+
"domain": "gloss:NonVerbalRepresentation",
|
|
952
|
+
"domainUnion": null,
|
|
953
|
+
"range": "xsd:string",
|
|
954
|
+
"rangeUnion": null,
|
|
955
|
+
"inverseOf": null
|
|
956
|
+
},
|
|
957
|
+
"gloss:representationRef": {
|
|
958
|
+
"iri": "https://www.glossarist.org/ontologies/representationRef",
|
|
959
|
+
"compact": "gloss:representationRef",
|
|
960
|
+
"label": "representation reference",
|
|
961
|
+
"comment": "URI to the external resource.",
|
|
962
|
+
"type": "datatype",
|
|
963
|
+
"domain": "gloss:NonVerbalRepresentation",
|
|
964
|
+
"domainUnion": null,
|
|
965
|
+
"range": "xsd:anyURI",
|
|
966
|
+
"rangeUnion": null,
|
|
967
|
+
"inverseOf": null
|
|
968
|
+
},
|
|
969
|
+
"gloss:representationText": {
|
|
970
|
+
"iri": "https://www.glossarist.org/ontologies/representationText",
|
|
971
|
+
"compact": "gloss:representationText",
|
|
972
|
+
"label": "representation text",
|
|
973
|
+
"comment": "Alt text or description of the representation.",
|
|
974
|
+
"type": "datatype",
|
|
975
|
+
"domain": "gloss:NonVerbalRepresentation",
|
|
976
|
+
"domainUnion": null,
|
|
977
|
+
"range": "xsd:string",
|
|
978
|
+
"rangeUnion": null,
|
|
979
|
+
"inverseOf": null
|
|
980
|
+
},
|
|
981
|
+
"gloss:designationRelType": {
|
|
982
|
+
"iri": "https://www.glossarist.org/ontologies/designationRelType",
|
|
983
|
+
"compact": "gloss:designationRelType",
|
|
984
|
+
"label": "designation relationship type",
|
|
985
|
+
"comment": "Type: abbreviated_form_for or short_form_for.",
|
|
986
|
+
"type": "datatype",
|
|
987
|
+
"domain": "gloss:DesignationRelationship",
|
|
988
|
+
"domainUnion": null,
|
|
989
|
+
"range": "xsd:string",
|
|
990
|
+
"rangeUnion": null,
|
|
991
|
+
"inverseOf": null
|
|
992
|
+
},
|
|
993
|
+
"gloss:designationRelTarget": {
|
|
994
|
+
"iri": "https://www.glossarist.org/ontologies/designationRelTarget",
|
|
995
|
+
"compact": "gloss:designationRelTarget",
|
|
996
|
+
"label": "designation relationship target",
|
|
997
|
+
"comment": "Text of the target designation being referenced.",
|
|
998
|
+
"type": "datatype",
|
|
999
|
+
"domain": "gloss:DesignationRelationship",
|
|
1000
|
+
"domainUnion": null,
|
|
1001
|
+
"range": "xsd:string",
|
|
1002
|
+
"rangeUnion": null,
|
|
1003
|
+
"inverseOf": null
|
|
1004
|
+
},
|
|
1005
|
+
"gloss:localityType": {
|
|
1006
|
+
"iri": "https://www.glossarist.org/ontologies/localityType",
|
|
1007
|
+
"compact": "gloss:localityType",
|
|
1008
|
+
"label": "locality type",
|
|
1009
|
+
"comment": "Type of locality: section, clause, page, etc.",
|
|
1010
|
+
"type": "datatype",
|
|
1011
|
+
"domain": "gloss:Locality",
|
|
1012
|
+
"domainUnion": null,
|
|
1013
|
+
"range": "xsd:string",
|
|
1014
|
+
"rangeUnion": null,
|
|
1015
|
+
"inverseOf": null
|
|
1016
|
+
},
|
|
1017
|
+
"gloss:referenceFrom": {
|
|
1018
|
+
"iri": "https://www.glossarist.org/ontologies/referenceFrom",
|
|
1019
|
+
"compact": "gloss:referenceFrom",
|
|
1020
|
+
"label": "reference from",
|
|
1021
|
+
"comment": "Starting point of the locality reference.",
|
|
1022
|
+
"type": "datatype",
|
|
1023
|
+
"domain": "gloss:Locality",
|
|
1024
|
+
"domainUnion": null,
|
|
1025
|
+
"range": "xsd:string",
|
|
1026
|
+
"rangeUnion": null,
|
|
1027
|
+
"inverseOf": null
|
|
1028
|
+
},
|
|
1029
|
+
"gloss:referenceTo": {
|
|
1030
|
+
"iri": "https://www.glossarist.org/ontologies/referenceTo",
|
|
1031
|
+
"compact": "gloss:referenceTo",
|
|
1032
|
+
"label": "reference to",
|
|
1033
|
+
"comment": "Ending point of the locality reference (for ranges).",
|
|
1034
|
+
"type": "datatype",
|
|
1035
|
+
"domain": "gloss:Locality",
|
|
1036
|
+
"domainUnion": null,
|
|
1037
|
+
"range": "xsd:string",
|
|
1038
|
+
"rangeUnion": null,
|
|
1039
|
+
"inverseOf": null
|
|
1040
|
+
},
|
|
1041
|
+
"gloss:gender": {
|
|
1042
|
+
"iri": "https://www.glossarist.org/ontologies/gender",
|
|
1043
|
+
"compact": "gloss:gender",
|
|
1044
|
+
"label": "gender",
|
|
1045
|
+
"comment": "Grammatical gender (m, f, n, c).",
|
|
1046
|
+
"type": "object",
|
|
1047
|
+
"domain": "gloss:GrammarInfo",
|
|
1048
|
+
"domainUnion": null,
|
|
1049
|
+
"range": "skos:Concept",
|
|
1050
|
+
"rangeUnion": null,
|
|
1051
|
+
"inverseOf": null
|
|
1052
|
+
},
|
|
1053
|
+
"gloss:number": {
|
|
1054
|
+
"iri": "https://www.glossarist.org/ontologies/number",
|
|
1055
|
+
"compact": "gloss:number",
|
|
1056
|
+
"label": "number",
|
|
1057
|
+
"comment": "Grammatical number (singular, dual, plural).",
|
|
1058
|
+
"type": "object",
|
|
1059
|
+
"domain": "gloss:GrammarInfo",
|
|
1060
|
+
"domainUnion": null,
|
|
1061
|
+
"range": "skos:Concept",
|
|
1062
|
+
"rangeUnion": null,
|
|
1063
|
+
"inverseOf": null
|
|
1064
|
+
},
|
|
1065
|
+
"gloss:isNoun": {
|
|
1066
|
+
"iri": "https://www.glossarist.org/ontologies/isNoun",
|
|
1067
|
+
"compact": "gloss:isNoun",
|
|
1068
|
+
"label": "is noun",
|
|
1069
|
+
"comment": null,
|
|
1070
|
+
"type": "datatype",
|
|
1071
|
+
"domain": "gloss:GrammarInfo",
|
|
1072
|
+
"domainUnion": null,
|
|
1073
|
+
"range": "xsd:boolean",
|
|
1074
|
+
"rangeUnion": null,
|
|
1075
|
+
"inverseOf": null
|
|
1076
|
+
},
|
|
1077
|
+
"gloss:isVerb": {
|
|
1078
|
+
"iri": "https://www.glossarist.org/ontologies/isVerb",
|
|
1079
|
+
"compact": "gloss:isVerb",
|
|
1080
|
+
"label": "is verb",
|
|
1081
|
+
"comment": null,
|
|
1082
|
+
"type": "datatype",
|
|
1083
|
+
"domain": "gloss:GrammarInfo",
|
|
1084
|
+
"domainUnion": null,
|
|
1085
|
+
"range": "xsd:boolean",
|
|
1086
|
+
"rangeUnion": null,
|
|
1087
|
+
"inverseOf": null
|
|
1088
|
+
},
|
|
1089
|
+
"gloss:isAdjective": {
|
|
1090
|
+
"iri": "https://www.glossarist.org/ontologies/isAdjective",
|
|
1091
|
+
"compact": "gloss:isAdjective",
|
|
1092
|
+
"label": "is adjective",
|
|
1093
|
+
"comment": null,
|
|
1094
|
+
"type": "datatype",
|
|
1095
|
+
"domain": "gloss:GrammarInfo",
|
|
1096
|
+
"domainUnion": null,
|
|
1097
|
+
"range": "xsd:boolean",
|
|
1098
|
+
"rangeUnion": null,
|
|
1099
|
+
"inverseOf": null
|
|
1100
|
+
},
|
|
1101
|
+
"gloss:isAdverb": {
|
|
1102
|
+
"iri": "https://www.glossarist.org/ontologies/isAdverb",
|
|
1103
|
+
"compact": "gloss:isAdverb",
|
|
1104
|
+
"label": "is adverb",
|
|
1105
|
+
"comment": null,
|
|
1106
|
+
"type": "datatype",
|
|
1107
|
+
"domain": "gloss:GrammarInfo",
|
|
1108
|
+
"domainUnion": null,
|
|
1109
|
+
"range": "xsd:boolean",
|
|
1110
|
+
"rangeUnion": null,
|
|
1111
|
+
"inverseOf": null
|
|
1112
|
+
},
|
|
1113
|
+
"gloss:isPreposition": {
|
|
1114
|
+
"iri": "https://www.glossarist.org/ontologies/isPreposition",
|
|
1115
|
+
"compact": "gloss:isPreposition",
|
|
1116
|
+
"label": "is preposition",
|
|
1117
|
+
"comment": null,
|
|
1118
|
+
"type": "datatype",
|
|
1119
|
+
"domain": "gloss:GrammarInfo",
|
|
1120
|
+
"domainUnion": null,
|
|
1121
|
+
"range": "xsd:boolean",
|
|
1122
|
+
"rangeUnion": null,
|
|
1123
|
+
"inverseOf": null
|
|
1124
|
+
},
|
|
1125
|
+
"gloss:isParticiple": {
|
|
1126
|
+
"iri": "https://www.glossarist.org/ontologies/isParticiple",
|
|
1127
|
+
"compact": "gloss:isParticiple",
|
|
1128
|
+
"label": "is participle",
|
|
1129
|
+
"comment": null,
|
|
1130
|
+
"type": "datatype",
|
|
1131
|
+
"domain": "gloss:GrammarInfo",
|
|
1132
|
+
"domainUnion": null,
|
|
1133
|
+
"range": "xsd:boolean",
|
|
1134
|
+
"rangeUnion": null,
|
|
1135
|
+
"inverseOf": null
|
|
1136
|
+
},
|
|
1137
|
+
"gloss:script": {
|
|
1138
|
+
"iri": "https://www.glossarist.org/ontologies/script",
|
|
1139
|
+
"compact": "gloss:script",
|
|
1140
|
+
"label": "script",
|
|
1141
|
+
"comment": "ISO 15924 four-letter script code.",
|
|
1142
|
+
"type": "datatype",
|
|
1143
|
+
"domain": "[",
|
|
1144
|
+
"domainUnion": [
|
|
1145
|
+
"gloss:LocalizedConcept",
|
|
1146
|
+
"gloss:Designation",
|
|
1147
|
+
"gloss:Pronunciation"
|
|
1148
|
+
],
|
|
1149
|
+
"range": "xsd:string",
|
|
1150
|
+
"rangeUnion": null,
|
|
1151
|
+
"inverseOf": null
|
|
1152
|
+
},
|
|
1153
|
+
"gloss:conversionSystem": {
|
|
1154
|
+
"iri": "https://www.glossarist.org/ontologies/conversionSystem",
|
|
1155
|
+
"compact": "gloss:conversionSystem",
|
|
1156
|
+
"label": "conversion system",
|
|
1157
|
+
"comment": "ISO 24229 conversion system code.",
|
|
1158
|
+
"type": "datatype",
|
|
1159
|
+
"domain": "[",
|
|
1160
|
+
"domainUnion": [
|
|
1161
|
+
"gloss:LocalizedConcept",
|
|
1162
|
+
"gloss:Designation",
|
|
1163
|
+
"gloss:Pronunciation"
|
|
1164
|
+
],
|
|
1165
|
+
"range": "xsd:string",
|
|
1166
|
+
"rangeUnion": null,
|
|
1167
|
+
"inverseOf": null
|
|
1168
|
+
},
|
|
1169
|
+
"gloss:deprecates": {
|
|
1170
|
+
"iri": "https://www.glossarist.org/ontologies/deprecates",
|
|
1171
|
+
"compact": "gloss:deprecates",
|
|
1172
|
+
"label": "deprecates",
|
|
1173
|
+
"comment": "Lifecycle: this concept deprecates another.",
|
|
1174
|
+
"type": "object",
|
|
1175
|
+
"domain": "skos:Concept",
|
|
1176
|
+
"domainUnion": null,
|
|
1177
|
+
"range": "skos:Concept",
|
|
1178
|
+
"rangeUnion": null,
|
|
1179
|
+
"inverseOf": "gloss:deprecatedBy"
|
|
1180
|
+
},
|
|
1181
|
+
"gloss:deprecatedBy": {
|
|
1182
|
+
"iri": "https://www.glossarist.org/ontologies/deprecatedBy",
|
|
1183
|
+
"compact": "gloss:deprecatedBy",
|
|
1184
|
+
"label": "deprecated by",
|
|
1185
|
+
"comment": null,
|
|
1186
|
+
"type": "object",
|
|
1187
|
+
"domain": "skos:Concept",
|
|
1188
|
+
"domainUnion": null,
|
|
1189
|
+
"range": "skos:Concept",
|
|
1190
|
+
"rangeUnion": null,
|
|
1191
|
+
"inverseOf": "gloss:deprecates"
|
|
1192
|
+
},
|
|
1193
|
+
"gloss:supersedes": {
|
|
1194
|
+
"iri": "https://www.glossarist.org/ontologies/supersedes",
|
|
1195
|
+
"compact": "gloss:supersedes",
|
|
1196
|
+
"label": "supersedes",
|
|
1197
|
+
"comment": "Lifecycle: this concept supersedes another.",
|
|
1198
|
+
"type": "object",
|
|
1199
|
+
"domain": "skos:Concept",
|
|
1200
|
+
"domainUnion": null,
|
|
1201
|
+
"range": "skos:Concept",
|
|
1202
|
+
"rangeUnion": null,
|
|
1203
|
+
"inverseOf": "gloss:supersededBy"
|
|
1204
|
+
},
|
|
1205
|
+
"gloss:supersededBy": {
|
|
1206
|
+
"iri": "https://www.glossarist.org/ontologies/supersededBy",
|
|
1207
|
+
"compact": "gloss:supersededBy",
|
|
1208
|
+
"label": "superseded by",
|
|
1209
|
+
"comment": null,
|
|
1210
|
+
"type": "object",
|
|
1211
|
+
"domain": "skos:Concept",
|
|
1212
|
+
"domainUnion": null,
|
|
1213
|
+
"range": "skos:Concept",
|
|
1214
|
+
"rangeUnion": null,
|
|
1215
|
+
"inverseOf": "gloss:supersedes"
|
|
1216
|
+
},
|
|
1217
|
+
"gloss:compares": {
|
|
1218
|
+
"iri": "https://www.glossarist.org/ontologies/compares",
|
|
1219
|
+
"compact": "gloss:compares",
|
|
1220
|
+
"label": "compares",
|
|
1221
|
+
"comment": "Comparative: this concept is compared to another.",
|
|
1222
|
+
"type": "object",
|
|
1223
|
+
"domain": "skos:Concept",
|
|
1224
|
+
"domainUnion": null,
|
|
1225
|
+
"range": "skos:Concept",
|
|
1226
|
+
"rangeUnion": null,
|
|
1227
|
+
"inverseOf": null
|
|
1228
|
+
},
|
|
1229
|
+
"gloss:contrasts": {
|
|
1230
|
+
"iri": "https://www.glossarist.org/ontologies/contrasts",
|
|
1231
|
+
"compact": "gloss:contrasts",
|
|
1232
|
+
"label": "contrasts",
|
|
1233
|
+
"comment": "Comparative: this concept contrasts with another.",
|
|
1234
|
+
"type": "object",
|
|
1235
|
+
"domain": "skos:Concept",
|
|
1236
|
+
"domainUnion": null,
|
|
1237
|
+
"range": "skos:Concept",
|
|
1238
|
+
"rangeUnion": null,
|
|
1239
|
+
"inverseOf": null
|
|
1240
|
+
},
|
|
1241
|
+
"gloss:sequentiallyRelated": {
|
|
1242
|
+
"iri": "https://www.glossarist.org/ontologies/sequentiallyRelated",
|
|
1243
|
+
"compact": "gloss:sequentiallyRelated",
|
|
1244
|
+
"label": "sequentially related",
|
|
1245
|
+
"comment": "Associative spatiotemporal: sequential relationship.",
|
|
1246
|
+
"type": "object",
|
|
1247
|
+
"domain": "skos:Concept",
|
|
1248
|
+
"domainUnion": null,
|
|
1249
|
+
"range": "skos:Concept",
|
|
1250
|
+
"rangeUnion": null,
|
|
1251
|
+
"inverseOf": null
|
|
1252
|
+
},
|
|
1253
|
+
"gloss:spatiallyRelated": {
|
|
1254
|
+
"iri": "https://www.glossarist.org/ontologies/spatiallyRelated",
|
|
1255
|
+
"compact": "gloss:spatiallyRelated",
|
|
1256
|
+
"label": "spatially related",
|
|
1257
|
+
"comment": "Associative spatiotemporal: spatial relationship.",
|
|
1258
|
+
"type": "object",
|
|
1259
|
+
"domain": "skos:Concept",
|
|
1260
|
+
"domainUnion": null,
|
|
1261
|
+
"range": "skos:Concept",
|
|
1262
|
+
"rangeUnion": null,
|
|
1263
|
+
"inverseOf": null
|
|
1264
|
+
},
|
|
1265
|
+
"gloss:temporallyRelated": {
|
|
1266
|
+
"iri": "https://www.glossarist.org/ontologies/temporallyRelated",
|
|
1267
|
+
"compact": "gloss:temporallyRelated",
|
|
1268
|
+
"label": "temporally related",
|
|
1269
|
+
"comment": "Associative spatiotemporal: temporal relationship.",
|
|
1270
|
+
"type": "object",
|
|
1271
|
+
"domain": "skos:Concept",
|
|
1272
|
+
"domainUnion": null,
|
|
1273
|
+
"range": "skos:Concept",
|
|
1274
|
+
"rangeUnion": null,
|
|
1275
|
+
"inverseOf": null
|
|
1276
|
+
},
|
|
1277
|
+
"gloss:hasHomograph": {
|
|
1278
|
+
"iri": "https://www.glossarist.org/ontologies/hasHomograph",
|
|
1279
|
+
"compact": "gloss:hasHomograph",
|
|
1280
|
+
"label": "has homograph",
|
|
1281
|
+
"comment": "Lexical: this concept has a homograph in another entry.",
|
|
1282
|
+
"type": "object",
|
|
1283
|
+
"domain": "skos:Concept",
|
|
1284
|
+
"domainUnion": null,
|
|
1285
|
+
"range": "skos:Concept",
|
|
1286
|
+
"rangeUnion": null,
|
|
1287
|
+
"inverseOf": null
|
|
1288
|
+
},
|
|
1289
|
+
"gloss:hasFalseFriend": {
|
|
1290
|
+
"iri": "https://www.glossarist.org/ontologies/hasFalseFriend",
|
|
1291
|
+
"compact": "gloss:hasFalseFriend",
|
|
1292
|
+
"label": "has false friend",
|
|
1293
|
+
"comment": "Lexical: this concept has a false friend in another language.",
|
|
1294
|
+
"type": "object",
|
|
1295
|
+
"domain": "skos:Concept",
|
|
1296
|
+
"domainUnion": null,
|
|
1297
|
+
"range": "skos:Concept",
|
|
1298
|
+
"rangeUnion": null,
|
|
1299
|
+
"inverseOf": null
|
|
1300
|
+
},
|
|
1301
|
+
"gloss:relatedConceptBroader": {
|
|
1302
|
+
"iri": "https://www.glossarist.org/ontologies/relatedConceptBroader",
|
|
1303
|
+
"compact": "gloss:relatedConceptBroader",
|
|
1304
|
+
"label": "related concept (broader)",
|
|
1305
|
+
"comment": "Associative: related concept with broader scope.",
|
|
1306
|
+
"type": "object",
|
|
1307
|
+
"domain": "skos:Concept",
|
|
1308
|
+
"domainUnion": null,
|
|
1309
|
+
"range": "skos:Concept",
|
|
1310
|
+
"rangeUnion": null,
|
|
1311
|
+
"inverseOf": null
|
|
1312
|
+
},
|
|
1313
|
+
"gloss:relatedConceptNarrower": {
|
|
1314
|
+
"iri": "https://www.glossarist.org/ontologies/relatedConceptNarrower",
|
|
1315
|
+
"compact": "gloss:relatedConceptNarrower",
|
|
1316
|
+
"label": "related concept (narrower)",
|
|
1317
|
+
"comment": "Associative: related concept with narrower scope.",
|
|
1318
|
+
"type": "object",
|
|
1319
|
+
"domain": "skos:Concept",
|
|
1320
|
+
"domainUnion": null,
|
|
1321
|
+
"range": "skos:Concept",
|
|
1322
|
+
"rangeUnion": null,
|
|
1323
|
+
"inverseOf": null
|
|
1324
|
+
},
|
|
1325
|
+
"gloss:abbreviatedFormFor": {
|
|
1326
|
+
"iri": "https://www.glossarist.org/ontologies/abbreviatedFormFor",
|
|
1327
|
+
"compact": "gloss:abbreviatedFormFor",
|
|
1328
|
+
"label": "abbreviated form for",
|
|
1329
|
+
"comment": "This designation is an abbreviated form of the target designation.",
|
|
1330
|
+
"type": "object",
|
|
1331
|
+
"domain": "gloss:Designation",
|
|
1332
|
+
"domainUnion": null,
|
|
1333
|
+
"range": "gloss:Designation",
|
|
1334
|
+
"rangeUnion": null,
|
|
1335
|
+
"inverseOf": "gloss:shortFormFor"
|
|
1336
|
+
},
|
|
1337
|
+
"gloss:shortFormFor": {
|
|
1338
|
+
"iri": "https://www.glossarist.org/ontologies/shortFormFor",
|
|
1339
|
+
"compact": "gloss:shortFormFor",
|
|
1340
|
+
"label": "short form for",
|
|
1341
|
+
"comment": "This designation is a short form of the target designation.",
|
|
1342
|
+
"type": "object",
|
|
1343
|
+
"domain": "gloss:Designation",
|
|
1344
|
+
"domainUnion": null,
|
|
1345
|
+
"range": "gloss:Designation",
|
|
1346
|
+
"rangeUnion": null,
|
|
1347
|
+
"inverseOf": "gloss:abbreviatedFormFor"
|
|
1348
|
+
}
|
|
1349
|
+
},
|
|
1350
|
+
"propertiesByDomain": {
|
|
1351
|
+
"gloss:Concept": {
|
|
1352
|
+
"object": [
|
|
1353
|
+
"gloss:hasLocalization",
|
|
1354
|
+
"gloss:hasStatus",
|
|
1355
|
+
"gloss:hasDomain",
|
|
1356
|
+
"gloss:hasRelatedConcept",
|
|
1357
|
+
"gloss:hasDate",
|
|
1358
|
+
"gloss:hasSource"
|
|
1359
|
+
],
|
|
1360
|
+
"datatype": [
|
|
1361
|
+
"gloss:identifier"
|
|
1362
|
+
]
|
|
1363
|
+
},
|
|
1364
|
+
"gloss:LocalizedConcept": {
|
|
1365
|
+
"object": [
|
|
1366
|
+
"gloss:isLocalizationOf",
|
|
1367
|
+
"gloss:hasEntryStatus",
|
|
1368
|
+
"gloss:hasDesignation",
|
|
1369
|
+
"gloss:hasDefinition",
|
|
1370
|
+
"gloss:hasNote",
|
|
1371
|
+
"gloss:hasExample",
|
|
1372
|
+
"gloss:hasNonVerbalRep"
|
|
1373
|
+
],
|
|
1374
|
+
"datatype": [
|
|
1375
|
+
"gloss:domain",
|
|
1376
|
+
"gloss:release",
|
|
1377
|
+
"gloss:lineageSimilarity",
|
|
1378
|
+
"gloss:script",
|
|
1379
|
+
"gloss:conversionSystem"
|
|
1380
|
+
]
|
|
1381
|
+
},
|
|
1382
|
+
"gloss:Designation": {
|
|
1383
|
+
"object": [
|
|
1384
|
+
"gloss:normativeStatus",
|
|
1385
|
+
"gloss:hasPronunciation",
|
|
1386
|
+
"gloss:hasTermType",
|
|
1387
|
+
"gloss:hasDesignationRel",
|
|
1388
|
+
"gloss:abbreviatedFormFor",
|
|
1389
|
+
"gloss:shortFormFor"
|
|
1390
|
+
],
|
|
1391
|
+
"datatype": [
|
|
1392
|
+
"gloss:geographicalArea",
|
|
1393
|
+
"gloss:isInternational",
|
|
1394
|
+
"gloss:isAbsent",
|
|
1395
|
+
"gloss:script",
|
|
1396
|
+
"gloss:conversionSystem"
|
|
1397
|
+
]
|
|
1398
|
+
},
|
|
1399
|
+
"gloss:Expression": {
|
|
1400
|
+
"object": [
|
|
1401
|
+
"gloss:hasGrammarInfo"
|
|
1402
|
+
],
|
|
1403
|
+
"datatype": [
|
|
1404
|
+
"gloss:prefix",
|
|
1405
|
+
"gloss:usageInfo",
|
|
1406
|
+
"gloss:fieldOfApplication"
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1409
|
+
"gloss:Abbreviation": {
|
|
1410
|
+
"object": [],
|
|
1411
|
+
"datatype": [
|
|
1412
|
+
"gloss:isAcronym",
|
|
1413
|
+
"gloss:isInitialism",
|
|
1414
|
+
"gloss:isTruncation"
|
|
1415
|
+
]
|
|
1416
|
+
},
|
|
1417
|
+
"gloss:LetterSymbol": {
|
|
1418
|
+
"object": [],
|
|
1419
|
+
"datatype": [
|
|
1420
|
+
"gloss:text"
|
|
1421
|
+
]
|
|
1422
|
+
},
|
|
1423
|
+
"gloss:GraphicalSymbol": {
|
|
1424
|
+
"object": [],
|
|
1425
|
+
"datatype": [
|
|
1426
|
+
"gloss:text",
|
|
1427
|
+
"gloss:image"
|
|
1428
|
+
]
|
|
1429
|
+
},
|
|
1430
|
+
"gloss:Pronunciation": {
|
|
1431
|
+
"object": [],
|
|
1432
|
+
"datatype": [
|
|
1433
|
+
"gloss:pronunciationContent",
|
|
1434
|
+
"gloss:pronunciationLanguage",
|
|
1435
|
+
"gloss:pronunciationScript",
|
|
1436
|
+
"gloss:pronunciationCountry",
|
|
1437
|
+
"gloss:pronunciationSystem",
|
|
1438
|
+
"gloss:script",
|
|
1439
|
+
"gloss:conversionSystem"
|
|
1440
|
+
]
|
|
1441
|
+
},
|
|
1442
|
+
"gloss:RelatedConcept": {
|
|
1443
|
+
"object": [
|
|
1444
|
+
"gloss:relationshipType",
|
|
1445
|
+
"gloss:relationshipRef"
|
|
1446
|
+
],
|
|
1447
|
+
"datatype": [
|
|
1448
|
+
"gloss:relationshipContent"
|
|
1449
|
+
]
|
|
1450
|
+
},
|
|
1451
|
+
"gloss:ConceptReference": {
|
|
1452
|
+
"object": [],
|
|
1453
|
+
"datatype": [
|
|
1454
|
+
"gloss:refType",
|
|
1455
|
+
"gloss:conceptId",
|
|
1456
|
+
"gloss:sourceUri",
|
|
1457
|
+
"gloss:urn"
|
|
1458
|
+
]
|
|
1459
|
+
},
|
|
1460
|
+
"gloss:ConceptSource": {
|
|
1461
|
+
"object": [
|
|
1462
|
+
"gloss:sourceType",
|
|
1463
|
+
"gloss:sourceStatus",
|
|
1464
|
+
"gloss:sourceOrigin"
|
|
1465
|
+
],
|
|
1466
|
+
"datatype": [
|
|
1467
|
+
"gloss:modification"
|
|
1468
|
+
]
|
|
1469
|
+
},
|
|
1470
|
+
"gloss:Citation": {
|
|
1471
|
+
"object": [
|
|
1472
|
+
"gloss:hasLocality"
|
|
1473
|
+
],
|
|
1474
|
+
"datatype": [
|
|
1475
|
+
"gloss:citationText",
|
|
1476
|
+
"gloss:citationSource",
|
|
1477
|
+
"gloss:citationId",
|
|
1478
|
+
"gloss:citationVersion",
|
|
1479
|
+
"gloss:citationLink"
|
|
1480
|
+
]
|
|
1481
|
+
},
|
|
1482
|
+
"gloss:ConceptDate": {
|
|
1483
|
+
"object": [
|
|
1484
|
+
"gloss:dateType"
|
|
1485
|
+
],
|
|
1486
|
+
"datatype": [
|
|
1487
|
+
"gloss:dateValue"
|
|
1488
|
+
]
|
|
1489
|
+
},
|
|
1490
|
+
"gloss:NonVerbalRepresentation": {
|
|
1491
|
+
"object": [],
|
|
1492
|
+
"datatype": [
|
|
1493
|
+
"gloss:representationType",
|
|
1494
|
+
"gloss:representationRef",
|
|
1495
|
+
"gloss:representationText"
|
|
1496
|
+
]
|
|
1497
|
+
},
|
|
1498
|
+
"gloss:DesignationRelationship": {
|
|
1499
|
+
"object": [],
|
|
1500
|
+
"datatype": [
|
|
1501
|
+
"gloss:designationRelType",
|
|
1502
|
+
"gloss:designationRelTarget"
|
|
1503
|
+
]
|
|
1504
|
+
},
|
|
1505
|
+
"gloss:Locality": {
|
|
1506
|
+
"object": [],
|
|
1507
|
+
"datatype": [
|
|
1508
|
+
"gloss:localityType",
|
|
1509
|
+
"gloss:referenceFrom",
|
|
1510
|
+
"gloss:referenceTo"
|
|
1511
|
+
]
|
|
1512
|
+
},
|
|
1513
|
+
"gloss:GrammarInfo": {
|
|
1514
|
+
"object": [
|
|
1515
|
+
"gloss:gender",
|
|
1516
|
+
"gloss:number"
|
|
1517
|
+
],
|
|
1518
|
+
"datatype": [
|
|
1519
|
+
"gloss:isNoun",
|
|
1520
|
+
"gloss:isVerb",
|
|
1521
|
+
"gloss:isAdjective",
|
|
1522
|
+
"gloss:isAdverb",
|
|
1523
|
+
"gloss:isPreposition",
|
|
1524
|
+
"gloss:isParticiple"
|
|
1525
|
+
]
|
|
1526
|
+
},
|
|
1527
|
+
"skos:Concept": {
|
|
1528
|
+
"object": [
|
|
1529
|
+
"gloss:deprecates",
|
|
1530
|
+
"gloss:deprecatedBy",
|
|
1531
|
+
"gloss:supersedes",
|
|
1532
|
+
"gloss:supersededBy",
|
|
1533
|
+
"gloss:compares",
|
|
1534
|
+
"gloss:contrasts",
|
|
1535
|
+
"gloss:sequentiallyRelated",
|
|
1536
|
+
"gloss:spatiallyRelated",
|
|
1537
|
+
"gloss:temporallyRelated",
|
|
1538
|
+
"gloss:hasHomograph",
|
|
1539
|
+
"gloss:hasFalseFriend",
|
|
1540
|
+
"gloss:relatedConceptBroader",
|
|
1541
|
+
"gloss:relatedConceptNarrower"
|
|
1542
|
+
],
|
|
1543
|
+
"datatype": []
|
|
1544
|
+
}
|
|
1545
|
+
},
|
|
1546
|
+
"stats": {
|
|
1547
|
+
"classCount": 20,
|
|
1548
|
+
"objectPropertyCount": 42,
|
|
1549
|
+
"datatypePropertyCount": 48
|
|
1550
|
+
}
|
|
1551
|
+
}
|