@glossarist/concept-browser 0.5.0 → 0.5.1
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 +32 -0
- package/cli/index.mjs +4 -0
- package/package.json +1 -1
- package/scripts/generate-data.mjs +2 -1
- package/scripts/generate-ontology-schema.mjs +312 -10
- package/src/__tests__/concept-card.test.ts +16 -2
- package/src/adapters/factory.ts +3 -2
- package/src/adapters/model-bridge.ts +2 -0
- package/src/adapters/ontology-schema.ts +89 -4
- package/src/adapters/types.ts +1 -0
- package/src/components/AppSidebar.vue +281 -43
- package/src/components/ConceptCard.vue +16 -4
- package/src/components/ConceptDetail.vue +30 -26
- package/src/components/ConceptRdfView.vue +3 -3
- package/src/components/ConceptTimeline.vue +2 -14
- package/src/components/GraphPanel.vue +19 -0
- package/src/composables/use-ontology-nav.ts +183 -13
- package/src/composables/use-render-options.ts +2 -2
- package/src/config/types.ts +1 -0
- package/src/config/use-site-config.ts +2 -2
- package/src/data/ontology-schema.json +1721 -153
- package/src/router/index.ts +10 -0
- package/src/stores/vocabulary.ts +1 -1
- package/src/utils/lang.ts +13 -0
- package/src/views/AboutView.vue +1 -1
- package/src/views/ContributorsView.vue +1 -1
- package/src/views/DatasetView.vue +77 -6
- package/src/views/NewsView.vue +2 -2
- package/src/views/OntologySchemaView.vue +331 -14
- package/src/views/PageView.vue +4 -3
- package/src/views/ResolveView.vue +1 -1
- package/src/views/StatsView.vue +1 -1
|
@@ -1,4 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
+
"ontology": {
|
|
3
|
+
"iri": "https://www.glossarist.org/ontologies/glossarist",
|
|
4
|
+
"label": "Glossarist Ontology",
|
|
5
|
+
"comment": "An OWL ontology for the Glossarist concept model. Builds on and extends multiple ISO standards: ISO 10241-1 (terminology entries), ISO 30042/TBX (data exchange), ISO 12620 (data category registry), ISO 25964/SKOS (thesaurus interoperability), ISO 639/15924/24229 (language/script/system identifiers). Design principles: - gloss:Concept rdfs:subClassOf skos:Concept — instant SKOS interop - gloss:Designation rdfs:subClassOf skosxl:Label — SKOS-XL pattern - Designations are separate named resources, linked via skosxl:prefLabel / skosxl:altLabel - Relationship subtypes reuse iso-thes: properties directly (broaderGeneric, etc.) - Source provenance uses prov:qualifiedDerivation - SKOS ConceptSchemes for all enumeration values (taxonomies/)",
|
|
6
|
+
"prefix": "gloss",
|
|
7
|
+
"namespaceUri": "https://www.glossarist.org/ontologies/",
|
|
8
|
+
"imports": [
|
|
9
|
+
{
|
|
10
|
+
"iri": "http://www.w3.org/2004/02/skos/core",
|
|
11
|
+
"label": "SKOS"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"iri": "http://www.w3.org/2008/05/skos-xl",
|
|
15
|
+
"label": "SKOS-XL"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"iri": "http://purl.org/iso25964/skos-thes",
|
|
19
|
+
"label": "ISO 25964"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"iri": "http://www.w3.org/ns/prov#",
|
|
23
|
+
"label": "PROV-O"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"license": "https://creativecommons.org/licenses/by/4.0/",
|
|
27
|
+
"created": "2025-05-14"
|
|
28
|
+
},
|
|
2
29
|
"ontologyIri": "https://www.glossarist.org/ontologies/glossarist",
|
|
3
30
|
"ontologyLabel": "Glossarist Ontology",
|
|
4
31
|
"classes": {
|
|
@@ -47,7 +74,9 @@
|
|
|
47
74
|
"disjointWith": null,
|
|
48
75
|
"children": [
|
|
49
76
|
"gloss:Expression",
|
|
50
|
-
"gloss:Symbol"
|
|
77
|
+
"gloss:Symbol",
|
|
78
|
+
"gloss:Prefix",
|
|
79
|
+
"gloss:Suffix"
|
|
51
80
|
],
|
|
52
81
|
"ancestors": [
|
|
53
82
|
"xl:Label"
|
|
@@ -126,6 +155,32 @@
|
|
|
126
155
|
"xl:Label"
|
|
127
156
|
]
|
|
128
157
|
},
|
|
158
|
+
"gloss:Prefix": {
|
|
159
|
+
"iri": "https://www.glossarist.org/ontologies/Prefix",
|
|
160
|
+
"compact": "gloss:Prefix",
|
|
161
|
+
"label": "Prefix Designation",
|
|
162
|
+
"comment": "A prefix that attaches before a designation (ISO 12620).",
|
|
163
|
+
"subClassOf": "gloss:Designation",
|
|
164
|
+
"disjointWith": "gloss:Expression",
|
|
165
|
+
"children": [],
|
|
166
|
+
"ancestors": [
|
|
167
|
+
"gloss:Designation",
|
|
168
|
+
"xl:Label"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
"gloss:Suffix": {
|
|
172
|
+
"iri": "https://www.glossarist.org/ontologies/Suffix",
|
|
173
|
+
"compact": "gloss:Suffix",
|
|
174
|
+
"label": "Suffix Designation",
|
|
175
|
+
"comment": "A suffix that attaches after a designation (ISO 12620).",
|
|
176
|
+
"subClassOf": "gloss:Designation",
|
|
177
|
+
"disjointWith": "gloss:Expression",
|
|
178
|
+
"children": [],
|
|
179
|
+
"ancestors": [
|
|
180
|
+
"gloss:Designation",
|
|
181
|
+
"xl:Label"
|
|
182
|
+
]
|
|
183
|
+
},
|
|
129
184
|
"gloss:Pronunciation": {
|
|
130
185
|
"iri": "https://www.glossarist.org/ontologies/Pronunciation",
|
|
131
186
|
"compact": "gloss:Pronunciation",
|
|
@@ -166,11 +221,11 @@
|
|
|
166
221
|
"children": [],
|
|
167
222
|
"ancestors": []
|
|
168
223
|
},
|
|
169
|
-
"gloss:
|
|
170
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
171
|
-
"compact": "gloss:
|
|
172
|
-
"label": "
|
|
173
|
-
"comment": "A typed reference to
|
|
224
|
+
"gloss:Reference": {
|
|
225
|
+
"iri": "https://www.glossarist.org/ontologies/Reference",
|
|
226
|
+
"compact": "gloss:Reference",
|
|
227
|
+
"label": "Reference",
|
|
228
|
+
"comment": "A typed reference to an item within a collection. Used for domain classification (ManagedConceptData#domains) and typed references (ConceptData#references). For bibliographic citations, use gloss:Citation. For concept links in relationships, use gloss:ConceptRef.",
|
|
174
229
|
"subClassOf": null,
|
|
175
230
|
"disjointWith": null,
|
|
176
231
|
"children": [],
|
|
@@ -190,7 +245,7 @@
|
|
|
190
245
|
"iri": "https://www.glossarist.org/ontologies/ConceptDate",
|
|
191
246
|
"compact": "gloss:ConceptDate",
|
|
192
247
|
"label": "Concept Date",
|
|
193
|
-
"comment": "A
|
|
248
|
+
"comment": "MANAGEMENT: A governance event in the concept or localization lifecycle. Types include acceptance, amendment, retirement, review, and review decision. Inspired by TBX <transactionGrp> (ISO 30042).",
|
|
194
249
|
"subClassOf": null,
|
|
195
250
|
"disjointWith": null,
|
|
196
251
|
"children": [],
|
|
@@ -206,21 +261,31 @@
|
|
|
206
261
|
"children": [],
|
|
207
262
|
"ancestors": []
|
|
208
263
|
},
|
|
209
|
-
"gloss:
|
|
210
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
211
|
-
"compact": "gloss:
|
|
212
|
-
"label": "
|
|
213
|
-
"comment": "A
|
|
264
|
+
"gloss:Citation": {
|
|
265
|
+
"iri": "https://www.glossarist.org/ontologies/Citation",
|
|
266
|
+
"compact": "gloss:Citation",
|
|
267
|
+
"label": "Citation",
|
|
268
|
+
"comment": "A bibliographic citation. The ref field is always a structured CitationRef hash (source + id + optional version). Never a plain string in V3. Used as the origin of ConceptSource. Corresponds to Citation in glossarist-ruby.",
|
|
269
|
+
"subClassOf": null,
|
|
270
|
+
"disjointWith": null,
|
|
271
|
+
"children": [],
|
|
272
|
+
"ancestors": []
|
|
273
|
+
},
|
|
274
|
+
"gloss:CitationRef": {
|
|
275
|
+
"iri": "https://www.glossarist.org/ontologies/CitationRef",
|
|
276
|
+
"compact": "gloss:CitationRef",
|
|
277
|
+
"label": "Citation Reference",
|
|
278
|
+
"comment": "Inner reference of a Citation — always a structured hash with source, id, and optional version. Never a plain string in V3. Corresponds to Citation::Ref in glossarist-ruby.",
|
|
214
279
|
"subClassOf": null,
|
|
215
280
|
"disjointWith": null,
|
|
216
281
|
"children": [],
|
|
217
282
|
"ancestors": []
|
|
218
283
|
},
|
|
219
|
-
"gloss:
|
|
220
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
221
|
-
"compact": "gloss:
|
|
222
|
-
"label": "
|
|
223
|
-
"comment": "
|
|
284
|
+
"gloss:ConceptRef": {
|
|
285
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptRef",
|
|
286
|
+
"compact": "gloss:ConceptRef",
|
|
287
|
+
"label": "Concept Reference",
|
|
288
|
+
"comment": "A reference to a concept in another registry or vocabulary. Has source and id only — no version, locality, or link. Used as the ref of RelatedConcept. Corresponds to ConceptRef in glossarist-ruby.",
|
|
224
289
|
"subClassOf": null,
|
|
225
290
|
"disjointWith": null,
|
|
226
291
|
"children": [],
|
|
@@ -235,6 +300,16 @@
|
|
|
235
300
|
"disjointWith": null,
|
|
236
301
|
"children": [],
|
|
237
302
|
"ancestors": []
|
|
303
|
+
},
|
|
304
|
+
"gloss:CustomLocality": {
|
|
305
|
+
"iri": "https://www.glossarist.org/ontologies/CustomLocality",
|
|
306
|
+
"compact": "gloss:CustomLocality",
|
|
307
|
+
"label": "Custom Locality",
|
|
308
|
+
"comment": "A custom name-value locality pair within a citation.",
|
|
309
|
+
"subClassOf": null,
|
|
310
|
+
"disjointWith": null,
|
|
311
|
+
"children": [],
|
|
312
|
+
"ancestors": []
|
|
238
313
|
}
|
|
239
314
|
},
|
|
240
315
|
"classHierarchyRoots": [
|
|
@@ -246,13 +321,15 @@
|
|
|
246
321
|
"gloss:GrammarInfo",
|
|
247
322
|
"gloss:DetailedDefinition",
|
|
248
323
|
"gloss:ConceptSource",
|
|
249
|
-
"gloss:
|
|
324
|
+
"gloss:Reference",
|
|
250
325
|
"gloss:RelatedConcept",
|
|
251
326
|
"gloss:ConceptDate",
|
|
252
327
|
"gloss:NonVerbalRepresentation",
|
|
253
|
-
"gloss:DesignationRelationship",
|
|
254
328
|
"gloss:Citation",
|
|
255
|
-
"gloss:
|
|
329
|
+
"gloss:CitationRef",
|
|
330
|
+
"gloss:ConceptRef",
|
|
331
|
+
"gloss:Locality",
|
|
332
|
+
"gloss:CustomLocality"
|
|
256
333
|
],
|
|
257
334
|
"properties": {
|
|
258
335
|
"gloss:hasLocalization": {
|
|
@@ -299,7 +376,7 @@
|
|
|
299
376
|
"type": "object",
|
|
300
377
|
"domain": "gloss:Concept",
|
|
301
378
|
"domainUnion": null,
|
|
302
|
-
"range": "gloss:
|
|
379
|
+
"range": "gloss:Reference",
|
|
303
380
|
"rangeUnion": null,
|
|
304
381
|
"inverseOf": null
|
|
305
382
|
},
|
|
@@ -307,10 +384,14 @@
|
|
|
307
384
|
"iri": "https://www.glossarist.org/ontologies/hasRelatedConcept",
|
|
308
385
|
"compact": "gloss:hasRelatedConcept",
|
|
309
386
|
"label": "has related concept",
|
|
310
|
-
"comment": "
|
|
387
|
+
"comment": "DATA: Typed semantic relationship — applicable at concept, localization, and designation levels.",
|
|
311
388
|
"type": "object",
|
|
312
|
-
"domain": "
|
|
313
|
-
"domainUnion":
|
|
389
|
+
"domain": "[",
|
|
390
|
+
"domainUnion": [
|
|
391
|
+
"gloss:Concept",
|
|
392
|
+
"gloss:LocalizedConcept",
|
|
393
|
+
"gloss:Designation"
|
|
394
|
+
],
|
|
314
395
|
"range": "gloss:RelatedConcept",
|
|
315
396
|
"rangeUnion": null,
|
|
316
397
|
"inverseOf": null
|
|
@@ -319,10 +400,13 @@
|
|
|
319
400
|
"iri": "https://www.glossarist.org/ontologies/hasDate",
|
|
320
401
|
"compact": "gloss:hasDate",
|
|
321
402
|
"label": "has date",
|
|
322
|
-
"comment": "
|
|
403
|
+
"comment": "MANAGEMENT: Governance date/event — applicable at concept and localization levels.",
|
|
323
404
|
"type": "object",
|
|
324
|
-
"domain": "
|
|
325
|
-
"domainUnion":
|
|
405
|
+
"domain": "[",
|
|
406
|
+
"domainUnion": [
|
|
407
|
+
"gloss:Concept",
|
|
408
|
+
"gloss:LocalizedConcept"
|
|
409
|
+
],
|
|
326
410
|
"range": "gloss:ConceptDate",
|
|
327
411
|
"rangeUnion": null,
|
|
328
412
|
"inverseOf": null
|
|
@@ -331,10 +415,16 @@
|
|
|
331
415
|
"iri": "https://www.glossarist.org/ontologies/hasSource",
|
|
332
416
|
"compact": "gloss:hasSource",
|
|
333
417
|
"label": "has source",
|
|
334
|
-
"comment": "
|
|
418
|
+
"comment": "DATA: Bibliographic source — applicable at concept, localization, designation, definition, and non-verbal representation levels.",
|
|
335
419
|
"type": "object",
|
|
336
|
-
"domain": "
|
|
337
|
-
"domainUnion":
|
|
420
|
+
"domain": "[",
|
|
421
|
+
"domainUnion": [
|
|
422
|
+
"gloss:Concept",
|
|
423
|
+
"gloss:LocalizedConcept",
|
|
424
|
+
"gloss:Designation",
|
|
425
|
+
"gloss:DetailedDefinition",
|
|
426
|
+
"gloss:NonVerbalRepresentation"
|
|
427
|
+
],
|
|
338
428
|
"range": "gloss:ConceptSource",
|
|
339
429
|
"rangeUnion": null,
|
|
340
430
|
"inverseOf": null
|
|
@@ -351,6 +441,18 @@
|
|
|
351
441
|
"rangeUnion": null,
|
|
352
442
|
"inverseOf": null
|
|
353
443
|
},
|
|
444
|
+
"gloss:uri": {
|
|
445
|
+
"iri": "https://www.glossarist.org/ontologies/uri",
|
|
446
|
+
"compact": "gloss:uri",
|
|
447
|
+
"label": "URI",
|
|
448
|
+
"comment": "Optional URI for the managed concept.",
|
|
449
|
+
"type": "datatype",
|
|
450
|
+
"domain": "gloss:Concept",
|
|
451
|
+
"domainUnion": null,
|
|
452
|
+
"range": "xsd:anyURI",
|
|
453
|
+
"rangeUnion": null,
|
|
454
|
+
"inverseOf": null
|
|
455
|
+
},
|
|
354
456
|
"gloss:hasEntryStatus": {
|
|
355
457
|
"iri": "https://www.glossarist.org/ontologies/hasEntryStatus",
|
|
356
458
|
"compact": "gloss:hasEntryStatus",
|
|
@@ -435,6 +537,46 @@
|
|
|
435
537
|
"rangeUnion": null,
|
|
436
538
|
"inverseOf": null
|
|
437
539
|
},
|
|
540
|
+
"gloss:classification": {
|
|
541
|
+
"iri": "https://www.glossarist.org/ontologies/classification",
|
|
542
|
+
"compact": "gloss:classification",
|
|
543
|
+
"label": "classification",
|
|
544
|
+
"comment": "DATA: Classification of the localized entry (admitted, preferred).",
|
|
545
|
+
"type": "datatype",
|
|
546
|
+
"domain": "gloss:LocalizedConcept",
|
|
547
|
+
"domainUnion": null,
|
|
548
|
+
"range": "xsd:string",
|
|
549
|
+
"rangeUnion": null,
|
|
550
|
+
"inverseOf": null
|
|
551
|
+
},
|
|
552
|
+
"gloss:hasReference": {
|
|
553
|
+
"iri": "https://www.glossarist.org/ontologies/hasReference",
|
|
554
|
+
"compact": "gloss:hasReference",
|
|
555
|
+
"label": "has reference",
|
|
556
|
+
"comment": "DATA: Typed concept reference at the localization level.",
|
|
557
|
+
"type": "object",
|
|
558
|
+
"domain": "gloss:LocalizedConcept",
|
|
559
|
+
"domainUnion": null,
|
|
560
|
+
"range": "gloss:Reference",
|
|
561
|
+
"rangeUnion": null,
|
|
562
|
+
"inverseOf": null
|
|
563
|
+
},
|
|
564
|
+
"gloss:language": {
|
|
565
|
+
"iri": "https://www.glossarist.org/ontologies/language",
|
|
566
|
+
"compact": "gloss:language",
|
|
567
|
+
"label": "language",
|
|
568
|
+
"comment": "DATA: ISO 639 three-character language code. Cascades: L10n → Designation → Pronunciation.",
|
|
569
|
+
"type": "datatype",
|
|
570
|
+
"domain": "[",
|
|
571
|
+
"domainUnion": [
|
|
572
|
+
"gloss:LocalizedConcept",
|
|
573
|
+
"gloss:Designation",
|
|
574
|
+
"gloss:Pronunciation"
|
|
575
|
+
],
|
|
576
|
+
"range": "xsd:string",
|
|
577
|
+
"rangeUnion": null,
|
|
578
|
+
"inverseOf": null
|
|
579
|
+
},
|
|
438
580
|
"gloss:release": {
|
|
439
581
|
"iri": "https://www.glossarist.org/ontologies/release",
|
|
440
582
|
"compact": "gloss:release",
|
|
@@ -459,6 +601,18 @@
|
|
|
459
601
|
"rangeUnion": null,
|
|
460
602
|
"inverseOf": null
|
|
461
603
|
},
|
|
604
|
+
"gloss:reviewType": {
|
|
605
|
+
"iri": "https://www.glossarist.org/ontologies/reviewType",
|
|
606
|
+
"compact": "gloss:reviewType",
|
|
607
|
+
"label": "review type",
|
|
608
|
+
"comment": "Type of review for the localized entry (editorial or substantive).",
|
|
609
|
+
"type": "datatype",
|
|
610
|
+
"domain": "gloss:LocalizedConcept",
|
|
611
|
+
"domainUnion": null,
|
|
612
|
+
"range": "xsd:string",
|
|
613
|
+
"rangeUnion": null,
|
|
614
|
+
"inverseOf": null
|
|
615
|
+
},
|
|
462
616
|
"gloss:normativeStatus": {
|
|
463
617
|
"iri": "https://www.glossarist.org/ontologies/normativeStatus",
|
|
464
618
|
"compact": "gloss:normativeStatus",
|
|
@@ -495,18 +649,6 @@
|
|
|
495
649
|
"rangeUnion": null,
|
|
496
650
|
"inverseOf": null
|
|
497
651
|
},
|
|
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
652
|
"gloss:hasGrammarInfo": {
|
|
511
653
|
"iri": "https://www.glossarist.org/ontologies/hasGrammarInfo",
|
|
512
654
|
"compact": "gloss:hasGrammarInfo",
|
|
@@ -555,6 +697,18 @@
|
|
|
555
697
|
"rangeUnion": null,
|
|
556
698
|
"inverseOf": null
|
|
557
699
|
},
|
|
700
|
+
"gloss:register": {
|
|
701
|
+
"iri": "https://www.glossarist.org/ontologies/register",
|
|
702
|
+
"compact": "gloss:register",
|
|
703
|
+
"label": "register",
|
|
704
|
+
"comment": "Register or usage level of the designation (ISO 12620 / TBX-Linguist: colloquial_register, neutral_register, technical_register, in_house_register, bench_level_register, slang_register, vulgar_register).",
|
|
705
|
+
"type": "datatype",
|
|
706
|
+
"domain": "gloss:Designation",
|
|
707
|
+
"domainUnion": null,
|
|
708
|
+
"range": "xsd:string",
|
|
709
|
+
"rangeUnion": null,
|
|
710
|
+
"inverseOf": null
|
|
711
|
+
},
|
|
558
712
|
"gloss:prefix": {
|
|
559
713
|
"iri": "https://www.glossarist.org/ontologies/prefix",
|
|
560
714
|
"compact": "gloss:prefix",
|
|
@@ -742,62 +896,98 @@
|
|
|
742
896
|
"iri": "https://www.glossarist.org/ontologies/relationshipRef",
|
|
743
897
|
"compact": "gloss:relationshipRef",
|
|
744
898
|
"label": "relationship reference",
|
|
745
|
-
"comment": "
|
|
899
|
+
"comment": "Reference for the related concept (source + id).",
|
|
746
900
|
"type": "object",
|
|
747
901
|
"domain": "gloss:RelatedConcept",
|
|
748
902
|
"domainUnion": null,
|
|
749
|
-
"range": "gloss:
|
|
903
|
+
"range": "gloss:ConceptRef",
|
|
750
904
|
"rangeUnion": null,
|
|
751
905
|
"inverseOf": null
|
|
752
906
|
},
|
|
753
|
-
"gloss:
|
|
754
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
755
|
-
"compact": "gloss:
|
|
756
|
-
"label": "
|
|
757
|
-
"comment": "
|
|
907
|
+
"gloss:source": {
|
|
908
|
+
"iri": "https://www.glossarist.org/ontologies/source",
|
|
909
|
+
"compact": "gloss:source",
|
|
910
|
+
"label": "source",
|
|
911
|
+
"comment": "Collection identifier (document series, termbase, vocabulary).",
|
|
758
912
|
"type": "datatype",
|
|
759
|
-
"domain": "gloss:
|
|
913
|
+
"domain": "gloss:Reference",
|
|
760
914
|
"domainUnion": null,
|
|
761
915
|
"range": "xsd:string",
|
|
762
916
|
"rangeUnion": null,
|
|
763
917
|
"inverseOf": null
|
|
764
918
|
},
|
|
765
|
-
"gloss:
|
|
766
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
767
|
-
"compact": "gloss:
|
|
768
|
-
"label": "
|
|
769
|
-
"comment": "
|
|
919
|
+
"gloss:refId": {
|
|
920
|
+
"iri": "https://www.glossarist.org/ontologies/refId",
|
|
921
|
+
"compact": "gloss:refId",
|
|
922
|
+
"label": "reference identifier",
|
|
923
|
+
"comment": "Item identifier within the collection (document ID, concept ID).",
|
|
770
924
|
"type": "datatype",
|
|
771
|
-
"domain": "gloss:
|
|
925
|
+
"domain": "gloss:Reference",
|
|
772
926
|
"domainUnion": null,
|
|
773
927
|
"range": "xsd:string",
|
|
774
928
|
"rangeUnion": null,
|
|
775
929
|
"inverseOf": null
|
|
776
930
|
},
|
|
777
|
-
"gloss:
|
|
778
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
779
|
-
"compact": "gloss:
|
|
780
|
-
"label": "
|
|
781
|
-
"comment": "
|
|
931
|
+
"gloss:refVersion": {
|
|
932
|
+
"iri": "https://www.glossarist.org/ontologies/refVersion",
|
|
933
|
+
"compact": "gloss:refVersion",
|
|
934
|
+
"label": "reference version",
|
|
935
|
+
"comment": "Version of the item or collection.",
|
|
782
936
|
"type": "datatype",
|
|
783
|
-
"domain": "gloss:
|
|
937
|
+
"domain": "gloss:Reference",
|
|
938
|
+
"domainUnion": null,
|
|
939
|
+
"range": "xsd:string",
|
|
940
|
+
"rangeUnion": null,
|
|
941
|
+
"inverseOf": null
|
|
942
|
+
},
|
|
943
|
+
"gloss:refLink": {
|
|
944
|
+
"iri": "https://www.glossarist.org/ontologies/refLink",
|
|
945
|
+
"compact": "gloss:refLink",
|
|
946
|
+
"label": "reference link",
|
|
947
|
+
"comment": "URL link to the source document or concept.",
|
|
948
|
+
"type": "datatype",
|
|
949
|
+
"domain": "gloss:Reference",
|
|
784
950
|
"domainUnion": null,
|
|
785
951
|
"range": "xsd:anyURI",
|
|
786
952
|
"rangeUnion": null,
|
|
787
953
|
"inverseOf": null
|
|
788
954
|
},
|
|
955
|
+
"gloss:refType": {
|
|
956
|
+
"iri": "https://www.glossarist.org/ontologies/refType",
|
|
957
|
+
"compact": "gloss:refType",
|
|
958
|
+
"label": "reference type",
|
|
959
|
+
"comment": "Type qualifier: local, designation, urn, domain.",
|
|
960
|
+
"type": "datatype",
|
|
961
|
+
"domain": "gloss:Reference",
|
|
962
|
+
"domainUnion": null,
|
|
963
|
+
"range": "xsd:string",
|
|
964
|
+
"rangeUnion": null,
|
|
965
|
+
"inverseOf": null
|
|
966
|
+
},
|
|
789
967
|
"gloss:urn": {
|
|
790
968
|
"iri": "https://www.glossarist.org/ontologies/urn",
|
|
791
969
|
"compact": "gloss:urn",
|
|
792
970
|
"label": "URN",
|
|
793
971
|
"comment": "Direct URN reference to the target concept.",
|
|
794
972
|
"type": "datatype",
|
|
795
|
-
"domain": "gloss:
|
|
973
|
+
"domain": "gloss:Reference",
|
|
796
974
|
"domainUnion": null,
|
|
797
975
|
"range": "xsd:anyURI",
|
|
798
976
|
"rangeUnion": null,
|
|
799
977
|
"inverseOf": null
|
|
800
978
|
},
|
|
979
|
+
"gloss:term": {
|
|
980
|
+
"iri": "https://www.glossarist.org/ontologies/term",
|
|
981
|
+
"compact": "gloss:term",
|
|
982
|
+
"label": "term",
|
|
983
|
+
"comment": "Term text when referencing a concept.",
|
|
984
|
+
"type": "datatype",
|
|
985
|
+
"domain": "gloss:Reference",
|
|
986
|
+
"domainUnion": null,
|
|
987
|
+
"range": "xsd:string",
|
|
988
|
+
"rangeUnion": null,
|
|
989
|
+
"inverseOf": null
|
|
990
|
+
},
|
|
801
991
|
"gloss:sourceType": {
|
|
802
992
|
"iri": "https://www.glossarist.org/ontologies/sourceType",
|
|
803
993
|
"compact": "gloss:sourceType",
|
|
@@ -846,11 +1036,35 @@
|
|
|
846
1036
|
"rangeUnion": null,
|
|
847
1037
|
"inverseOf": null
|
|
848
1038
|
},
|
|
849
|
-
"gloss:
|
|
850
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
851
|
-
"compact": "gloss:
|
|
852
|
-
"label": "citation
|
|
853
|
-
"comment": "
|
|
1039
|
+
"gloss:hasCitationRef": {
|
|
1040
|
+
"iri": "https://www.glossarist.org/ontologies/hasCitationRef",
|
|
1041
|
+
"compact": "gloss:hasCitationRef",
|
|
1042
|
+
"label": "has citation ref",
|
|
1043
|
+
"comment": "Structured inner reference (source + id + optional version).",
|
|
1044
|
+
"type": "object",
|
|
1045
|
+
"domain": "gloss:Citation",
|
|
1046
|
+
"domainUnion": null,
|
|
1047
|
+
"range": "gloss:CitationRef",
|
|
1048
|
+
"rangeUnion": null,
|
|
1049
|
+
"inverseOf": null
|
|
1050
|
+
},
|
|
1051
|
+
"gloss:hasCitationLocality": {
|
|
1052
|
+
"iri": "https://www.glossarist.org/ontologies/hasCitationLocality",
|
|
1053
|
+
"compact": "gloss:hasCitationLocality",
|
|
1054
|
+
"label": "has citation locality",
|
|
1055
|
+
"comment": "Locality within the cited document.",
|
|
1056
|
+
"type": "object",
|
|
1057
|
+
"domain": "gloss:Citation",
|
|
1058
|
+
"domainUnion": null,
|
|
1059
|
+
"range": "gloss:Locality",
|
|
1060
|
+
"rangeUnion": null,
|
|
1061
|
+
"inverseOf": null
|
|
1062
|
+
},
|
|
1063
|
+
"gloss:citationOriginal": {
|
|
1064
|
+
"iri": "https://www.glossarist.org/ontologies/citationOriginal",
|
|
1065
|
+
"compact": "gloss:citationOriginal",
|
|
1066
|
+
"label": "citation original",
|
|
1067
|
+
"comment": "Pre-parsed original citation text.",
|
|
854
1068
|
"type": "datatype",
|
|
855
1069
|
"domain": "gloss:Citation",
|
|
856
1070
|
"domainUnion": null,
|
|
@@ -858,37 +1072,97 @@
|
|
|
858
1072
|
"rangeUnion": null,
|
|
859
1073
|
"inverseOf": null
|
|
860
1074
|
},
|
|
861
|
-
"gloss:
|
|
862
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
863
|
-
"compact": "gloss:
|
|
864
|
-
"label": "
|
|
865
|
-
"comment": "
|
|
866
|
-
"type": "
|
|
1075
|
+
"gloss:hasCustomLocality": {
|
|
1076
|
+
"iri": "https://www.glossarist.org/ontologies/hasCustomLocality",
|
|
1077
|
+
"compact": "gloss:hasCustomLocality",
|
|
1078
|
+
"label": "has custom locality",
|
|
1079
|
+
"comment": "Custom name-value locality pairs.",
|
|
1080
|
+
"type": "object",
|
|
867
1081
|
"domain": "gloss:Citation",
|
|
868
1082
|
"domainUnion": null,
|
|
1083
|
+
"range": "gloss:CustomLocality",
|
|
1084
|
+
"rangeUnion": null,
|
|
1085
|
+
"inverseOf": null
|
|
1086
|
+
},
|
|
1087
|
+
"gloss:citationRefSource": {
|
|
1088
|
+
"iri": "https://www.glossarist.org/ontologies/citationRefSource",
|
|
1089
|
+
"compact": "gloss:citationRefSource",
|
|
1090
|
+
"label": "citation ref source",
|
|
1091
|
+
"comment": "Document series or termbase (e.g. ISO, IEC).",
|
|
1092
|
+
"type": "datatype",
|
|
1093
|
+
"domain": "gloss:CitationRef",
|
|
1094
|
+
"domainUnion": null,
|
|
869
1095
|
"range": "xsd:string",
|
|
870
1096
|
"rangeUnion": null,
|
|
871
1097
|
"inverseOf": null
|
|
872
1098
|
},
|
|
873
|
-
"gloss:
|
|
874
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
875
|
-
"compact": "gloss:
|
|
876
|
-
"label": "citation identifier",
|
|
877
|
-
"comment": "Document identifier
|
|
1099
|
+
"gloss:citationRefId": {
|
|
1100
|
+
"iri": "https://www.glossarist.org/ontologies/citationRefId",
|
|
1101
|
+
"compact": "gloss:citationRefId",
|
|
1102
|
+
"label": "citation ref identifier",
|
|
1103
|
+
"comment": "Document identifier within the series.",
|
|
878
1104
|
"type": "datatype",
|
|
879
|
-
"domain": "gloss:
|
|
1105
|
+
"domain": "gloss:CitationRef",
|
|
880
1106
|
"domainUnion": null,
|
|
881
1107
|
"range": "xsd:string",
|
|
882
1108
|
"rangeUnion": null,
|
|
883
1109
|
"inverseOf": null
|
|
884
1110
|
},
|
|
885
|
-
"gloss:
|
|
886
|
-
"iri": "https://www.glossarist.org/ontologies/
|
|
887
|
-
"compact": "gloss:
|
|
888
|
-
"label": "citation version",
|
|
889
|
-
"comment": "
|
|
1111
|
+
"gloss:citationRefVersion": {
|
|
1112
|
+
"iri": "https://www.glossarist.org/ontologies/citationRefVersion",
|
|
1113
|
+
"compact": "gloss:citationRefVersion",
|
|
1114
|
+
"label": "citation ref version",
|
|
1115
|
+
"comment": "Version of the document.",
|
|
890
1116
|
"type": "datatype",
|
|
891
|
-
"domain": "gloss:
|
|
1117
|
+
"domain": "gloss:CitationRef",
|
|
1118
|
+
"domainUnion": null,
|
|
1119
|
+
"range": "xsd:string",
|
|
1120
|
+
"rangeUnion": null,
|
|
1121
|
+
"inverseOf": null
|
|
1122
|
+
},
|
|
1123
|
+
"gloss:conceptRefSource": {
|
|
1124
|
+
"iri": "https://www.glossarist.org/ontologies/conceptRefSource",
|
|
1125
|
+
"compact": "gloss:conceptRefSource",
|
|
1126
|
+
"label": "concept ref source",
|
|
1127
|
+
"comment": "Registry or vocabulary identifier (e.g. IEC, ISO).",
|
|
1128
|
+
"type": "datatype",
|
|
1129
|
+
"domain": "gloss:ConceptRef",
|
|
1130
|
+
"domainUnion": null,
|
|
1131
|
+
"range": "xsd:string",
|
|
1132
|
+
"rangeUnion": null,
|
|
1133
|
+
"inverseOf": null
|
|
1134
|
+
},
|
|
1135
|
+
"gloss:conceptRefId": {
|
|
1136
|
+
"iri": "https://www.glossarist.org/ontologies/conceptRefId",
|
|
1137
|
+
"compact": "gloss:conceptRefId",
|
|
1138
|
+
"label": "concept ref identifier",
|
|
1139
|
+
"comment": "Concept identifier within the registry.",
|
|
1140
|
+
"type": "datatype",
|
|
1141
|
+
"domain": "gloss:ConceptRef",
|
|
1142
|
+
"domainUnion": null,
|
|
1143
|
+
"range": "xsd:string",
|
|
1144
|
+
"rangeUnion": null,
|
|
1145
|
+
"inverseOf": null
|
|
1146
|
+
},
|
|
1147
|
+
"gloss:customLocalityName": {
|
|
1148
|
+
"iri": "https://www.glossarist.org/ontologies/customLocalityName",
|
|
1149
|
+
"compact": "gloss:customLocalityName",
|
|
1150
|
+
"label": "custom locality name",
|
|
1151
|
+
"comment": null,
|
|
1152
|
+
"type": "datatype",
|
|
1153
|
+
"domain": "gloss:CustomLocality",
|
|
1154
|
+
"domainUnion": null,
|
|
1155
|
+
"range": "xsd:string",
|
|
1156
|
+
"rangeUnion": null,
|
|
1157
|
+
"inverseOf": null
|
|
1158
|
+
},
|
|
1159
|
+
"gloss:customLocalityValue": {
|
|
1160
|
+
"iri": "https://www.glossarist.org/ontologies/customLocalityValue",
|
|
1161
|
+
"compact": "gloss:customLocalityValue",
|
|
1162
|
+
"label": "custom locality value",
|
|
1163
|
+
"comment": null,
|
|
1164
|
+
"type": "datatype",
|
|
1165
|
+
"domain": "gloss:CustomLocality",
|
|
892
1166
|
"domainUnion": null,
|
|
893
1167
|
"range": "xsd:string",
|
|
894
1168
|
"rangeUnion": null,
|
|
@@ -912,7 +1186,7 @@
|
|
|
912
1186
|
"label": "has locality",
|
|
913
1187
|
"comment": null,
|
|
914
1188
|
"type": "object",
|
|
915
|
-
"domain": "gloss:
|
|
1189
|
+
"domain": "gloss:Reference",
|
|
916
1190
|
"domainUnion": null,
|
|
917
1191
|
"range": "gloss:Locality",
|
|
918
1192
|
"rangeUnion": null,
|
|
@@ -934,7 +1208,7 @@
|
|
|
934
1208
|
"iri": "https://www.glossarist.org/ontologies/dateType",
|
|
935
1209
|
"compact": "gloss:dateType",
|
|
936
1210
|
"label": "date type",
|
|
937
|
-
"comment": "Kind of
|
|
1211
|
+
"comment": "MANAGEMENT: Kind of governance event: accepted, amended, retired, review, review_decision.",
|
|
938
1212
|
"type": "object",
|
|
939
1213
|
"domain": "gloss:ConceptDate",
|
|
940
1214
|
"domainUnion": null,
|
|
@@ -942,6 +1216,18 @@
|
|
|
942
1216
|
"rangeUnion": null,
|
|
943
1217
|
"inverseOf": null
|
|
944
1218
|
},
|
|
1219
|
+
"gloss:eventDescription": {
|
|
1220
|
+
"iri": "https://www.glossarist.org/ontologies/eventDescription",
|
|
1221
|
+
"compact": "gloss:eventDescription",
|
|
1222
|
+
"label": "event description",
|
|
1223
|
+
"comment": "MANAGEMENT: Free-text description of the governance event (e.g., review decision narrative).",
|
|
1224
|
+
"type": "datatype",
|
|
1225
|
+
"domain": "gloss:ConceptDate",
|
|
1226
|
+
"domainUnion": null,
|
|
1227
|
+
"range": "xsd:string",
|
|
1228
|
+
"rangeUnion": null,
|
|
1229
|
+
"inverseOf": null
|
|
1230
|
+
},
|
|
945
1231
|
"gloss:representationType": {
|
|
946
1232
|
"iri": "https://www.glossarist.org/ontologies/representationType",
|
|
947
1233
|
"compact": "gloss:representationType",
|
|
@@ -978,30 +1264,6 @@
|
|
|
978
1264
|
"rangeUnion": null,
|
|
979
1265
|
"inverseOf": null
|
|
980
1266
|
},
|
|
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
1267
|
"gloss:localityType": {
|
|
1006
1268
|
"iri": "https://www.glossarist.org/ontologies/localityType",
|
|
1007
1269
|
"compact": "gloss:localityType",
|
|
@@ -1134,6 +1396,18 @@
|
|
|
1134
1396
|
"rangeUnion": null,
|
|
1135
1397
|
"inverseOf": null
|
|
1136
1398
|
},
|
|
1399
|
+
"gloss:partOfSpeech": {
|
|
1400
|
+
"iri": "https://www.glossarist.org/ontologies/partOfSpeech",
|
|
1401
|
+
"compact": "gloss:partOfSpeech",
|
|
1402
|
+
"label": "part of speech",
|
|
1403
|
+
"comment": "Part of speech classification (ISO 12620 / TBX: noun, verb, adj, adverb, preposition, participle).",
|
|
1404
|
+
"type": "datatype",
|
|
1405
|
+
"domain": "gloss:GrammarInfo",
|
|
1406
|
+
"domainUnion": null,
|
|
1407
|
+
"range": "xsd:string",
|
|
1408
|
+
"rangeUnion": null,
|
|
1409
|
+
"inverseOf": null
|
|
1410
|
+
},
|
|
1137
1411
|
"gloss:script": {
|
|
1138
1412
|
"iri": "https://www.glossarist.org/ontologies/script",
|
|
1139
1413
|
"compact": "gloss:script",
|
|
@@ -1358,40 +1632,80 @@
|
|
|
1358
1632
|
"gloss:hasSource"
|
|
1359
1633
|
],
|
|
1360
1634
|
"datatype": [
|
|
1361
|
-
"gloss:identifier"
|
|
1635
|
+
"gloss:identifier",
|
|
1636
|
+
"gloss:uri"
|
|
1362
1637
|
]
|
|
1363
1638
|
},
|
|
1364
1639
|
"gloss:LocalizedConcept": {
|
|
1365
1640
|
"object": [
|
|
1366
1641
|
"gloss:isLocalizationOf",
|
|
1642
|
+
"gloss:hasRelatedConcept",
|
|
1643
|
+
"gloss:hasDate",
|
|
1644
|
+
"gloss:hasSource",
|
|
1367
1645
|
"gloss:hasEntryStatus",
|
|
1368
1646
|
"gloss:hasDesignation",
|
|
1369
1647
|
"gloss:hasDefinition",
|
|
1370
1648
|
"gloss:hasNote",
|
|
1371
1649
|
"gloss:hasExample",
|
|
1372
|
-
"gloss:hasNonVerbalRep"
|
|
1650
|
+
"gloss:hasNonVerbalRep",
|
|
1651
|
+
"gloss:hasReference"
|
|
1373
1652
|
],
|
|
1374
1653
|
"datatype": [
|
|
1375
1654
|
"gloss:domain",
|
|
1655
|
+
"gloss:classification",
|
|
1656
|
+
"gloss:language",
|
|
1376
1657
|
"gloss:release",
|
|
1377
1658
|
"gloss:lineageSimilarity",
|
|
1659
|
+
"gloss:reviewType",
|
|
1378
1660
|
"gloss:script",
|
|
1379
1661
|
"gloss:conversionSystem"
|
|
1380
1662
|
]
|
|
1381
1663
|
},
|
|
1382
1664
|
"gloss:Designation": {
|
|
1383
1665
|
"object": [
|
|
1666
|
+
"gloss:hasRelatedConcept",
|
|
1667
|
+
"gloss:hasSource",
|
|
1384
1668
|
"gloss:normativeStatus",
|
|
1385
1669
|
"gloss:hasPronunciation",
|
|
1386
1670
|
"gloss:hasTermType",
|
|
1387
|
-
"gloss:hasDesignationRel",
|
|
1388
1671
|
"gloss:abbreviatedFormFor",
|
|
1389
1672
|
"gloss:shortFormFor"
|
|
1390
1673
|
],
|
|
1391
1674
|
"datatype": [
|
|
1675
|
+
"gloss:language",
|
|
1392
1676
|
"gloss:geographicalArea",
|
|
1393
1677
|
"gloss:isInternational",
|
|
1394
1678
|
"gloss:isAbsent",
|
|
1679
|
+
"gloss:register",
|
|
1680
|
+
"gloss:script",
|
|
1681
|
+
"gloss:conversionSystem"
|
|
1682
|
+
]
|
|
1683
|
+
},
|
|
1684
|
+
"gloss:DetailedDefinition": {
|
|
1685
|
+
"object": [
|
|
1686
|
+
"gloss:hasSource"
|
|
1687
|
+
],
|
|
1688
|
+
"datatype": []
|
|
1689
|
+
},
|
|
1690
|
+
"gloss:NonVerbalRepresentation": {
|
|
1691
|
+
"object": [
|
|
1692
|
+
"gloss:hasSource"
|
|
1693
|
+
],
|
|
1694
|
+
"datatype": [
|
|
1695
|
+
"gloss:representationType",
|
|
1696
|
+
"gloss:representationRef",
|
|
1697
|
+
"gloss:representationText"
|
|
1698
|
+
]
|
|
1699
|
+
},
|
|
1700
|
+
"gloss:Pronunciation": {
|
|
1701
|
+
"object": [],
|
|
1702
|
+
"datatype": [
|
|
1703
|
+
"gloss:language",
|
|
1704
|
+
"gloss:pronunciationContent",
|
|
1705
|
+
"gloss:pronunciationLanguage",
|
|
1706
|
+
"gloss:pronunciationScript",
|
|
1707
|
+
"gloss:pronunciationCountry",
|
|
1708
|
+
"gloss:pronunciationSystem",
|
|
1395
1709
|
"gloss:script",
|
|
1396
1710
|
"gloss:conversionSystem"
|
|
1397
1711
|
]
|
|
@@ -1427,18 +1741,6 @@
|
|
|
1427
1741
|
"gloss:image"
|
|
1428
1742
|
]
|
|
1429
1743
|
},
|
|
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
1744
|
"gloss:RelatedConcept": {
|
|
1443
1745
|
"object": [
|
|
1444
1746
|
"gloss:relationshipType",
|
|
@@ -1448,13 +1750,18 @@
|
|
|
1448
1750
|
"gloss:relationshipContent"
|
|
1449
1751
|
]
|
|
1450
1752
|
},
|
|
1451
|
-
"gloss:
|
|
1452
|
-
"object": [
|
|
1753
|
+
"gloss:Reference": {
|
|
1754
|
+
"object": [
|
|
1755
|
+
"gloss:hasLocality"
|
|
1756
|
+
],
|
|
1453
1757
|
"datatype": [
|
|
1758
|
+
"gloss:source",
|
|
1759
|
+
"gloss:refId",
|
|
1760
|
+
"gloss:refVersion",
|
|
1761
|
+
"gloss:refLink",
|
|
1454
1762
|
"gloss:refType",
|
|
1455
|
-
"gloss:
|
|
1456
|
-
"gloss:
|
|
1457
|
-
"gloss:urn"
|
|
1763
|
+
"gloss:urn",
|
|
1764
|
+
"gloss:term"
|
|
1458
1765
|
]
|
|
1459
1766
|
},
|
|
1460
1767
|
"gloss:ConceptSource": {
|
|
@@ -1469,37 +1776,44 @@
|
|
|
1469
1776
|
},
|
|
1470
1777
|
"gloss:Citation": {
|
|
1471
1778
|
"object": [
|
|
1472
|
-
"gloss:
|
|
1779
|
+
"gloss:hasCitationRef",
|
|
1780
|
+
"gloss:hasCitationLocality",
|
|
1781
|
+
"gloss:hasCustomLocality"
|
|
1473
1782
|
],
|
|
1474
1783
|
"datatype": [
|
|
1475
|
-
"gloss:
|
|
1476
|
-
"gloss:citationSource",
|
|
1477
|
-
"gloss:citationId",
|
|
1478
|
-
"gloss:citationVersion",
|
|
1784
|
+
"gloss:citationOriginal",
|
|
1479
1785
|
"gloss:citationLink"
|
|
1480
1786
|
]
|
|
1481
1787
|
},
|
|
1482
|
-
"gloss:
|
|
1483
|
-
"object": [
|
|
1484
|
-
"gloss:dateType"
|
|
1485
|
-
],
|
|
1788
|
+
"gloss:CitationRef": {
|
|
1789
|
+
"object": [],
|
|
1486
1790
|
"datatype": [
|
|
1487
|
-
"gloss:
|
|
1791
|
+
"gloss:citationRefSource",
|
|
1792
|
+
"gloss:citationRefId",
|
|
1793
|
+
"gloss:citationRefVersion"
|
|
1488
1794
|
]
|
|
1489
1795
|
},
|
|
1490
|
-
"gloss:
|
|
1796
|
+
"gloss:ConceptRef": {
|
|
1491
1797
|
"object": [],
|
|
1492
1798
|
"datatype": [
|
|
1493
|
-
"gloss:
|
|
1494
|
-
"gloss:
|
|
1495
|
-
"gloss:representationText"
|
|
1799
|
+
"gloss:conceptRefSource",
|
|
1800
|
+
"gloss:conceptRefId"
|
|
1496
1801
|
]
|
|
1497
1802
|
},
|
|
1498
|
-
"gloss:
|
|
1803
|
+
"gloss:CustomLocality": {
|
|
1499
1804
|
"object": [],
|
|
1500
1805
|
"datatype": [
|
|
1501
|
-
"gloss:
|
|
1502
|
-
"gloss:
|
|
1806
|
+
"gloss:customLocalityName",
|
|
1807
|
+
"gloss:customLocalityValue"
|
|
1808
|
+
]
|
|
1809
|
+
},
|
|
1810
|
+
"gloss:ConceptDate": {
|
|
1811
|
+
"object": [
|
|
1812
|
+
"gloss:dateType"
|
|
1813
|
+
],
|
|
1814
|
+
"datatype": [
|
|
1815
|
+
"gloss:dateValue",
|
|
1816
|
+
"gloss:eventDescription"
|
|
1503
1817
|
]
|
|
1504
1818
|
},
|
|
1505
1819
|
"gloss:Locality": {
|
|
@@ -1521,7 +1835,8 @@
|
|
|
1521
1835
|
"gloss:isAdjective",
|
|
1522
1836
|
"gloss:isAdverb",
|
|
1523
1837
|
"gloss:isPreposition",
|
|
1524
|
-
"gloss:isParticiple"
|
|
1838
|
+
"gloss:isParticiple",
|
|
1839
|
+
"gloss:partOfSpeech"
|
|
1525
1840
|
]
|
|
1526
1841
|
},
|
|
1527
1842
|
"skos:Concept": {
|
|
@@ -1543,9 +1858,1262 @@
|
|
|
1543
1858
|
"datatype": []
|
|
1544
1859
|
}
|
|
1545
1860
|
},
|
|
1861
|
+
"shapes": {
|
|
1862
|
+
"gloss:ConceptShape": {
|
|
1863
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptShape",
|
|
1864
|
+
"compact": "gloss:ConceptShape",
|
|
1865
|
+
"label": "Concept",
|
|
1866
|
+
"comment": null,
|
|
1867
|
+
"targetClass": "gloss:Concept",
|
|
1868
|
+
"shapeClass": "skos:Concept",
|
|
1869
|
+
"constraints": [
|
|
1870
|
+
{
|
|
1871
|
+
"path": "gloss:identifier",
|
|
1872
|
+
"datatype": "xsd:string",
|
|
1873
|
+
"class": null,
|
|
1874
|
+
"valuesFrom": null,
|
|
1875
|
+
"nodeKind": null,
|
|
1876
|
+
"minCount": 1,
|
|
1877
|
+
"maxCount": 1,
|
|
1878
|
+
"in": null
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
"path": "gloss:uri",
|
|
1882
|
+
"datatype": "xsd:anyURI",
|
|
1883
|
+
"class": null,
|
|
1884
|
+
"valuesFrom": null,
|
|
1885
|
+
"nodeKind": null,
|
|
1886
|
+
"minCount": null,
|
|
1887
|
+
"maxCount": 1,
|
|
1888
|
+
"in": null
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
"path": "gloss:hasLocalization",
|
|
1892
|
+
"datatype": null,
|
|
1893
|
+
"class": "gloss:LocalizedConcept",
|
|
1894
|
+
"valuesFrom": null,
|
|
1895
|
+
"nodeKind": null,
|
|
1896
|
+
"minCount": null,
|
|
1897
|
+
"maxCount": null,
|
|
1898
|
+
"in": null
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"path": "gloss:hasStatus",
|
|
1902
|
+
"datatype": null,
|
|
1903
|
+
"class": "skos:Concept",
|
|
1904
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/conceptstatus>",
|
|
1905
|
+
"nodeKind": null,
|
|
1906
|
+
"minCount": null,
|
|
1907
|
+
"maxCount": 1,
|
|
1908
|
+
"in": null
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
"path": "gloss:hasRelatedConcept",
|
|
1912
|
+
"datatype": null,
|
|
1913
|
+
"class": "gloss:RelatedConcept",
|
|
1914
|
+
"valuesFrom": null,
|
|
1915
|
+
"nodeKind": null,
|
|
1916
|
+
"minCount": null,
|
|
1917
|
+
"maxCount": null,
|
|
1918
|
+
"in": null
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"path": "gloss:hasDate",
|
|
1922
|
+
"datatype": null,
|
|
1923
|
+
"class": "gloss:ConceptDate",
|
|
1924
|
+
"valuesFrom": null,
|
|
1925
|
+
"nodeKind": null,
|
|
1926
|
+
"minCount": null,
|
|
1927
|
+
"maxCount": null,
|
|
1928
|
+
"in": null
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
"path": "gloss:hasSource",
|
|
1932
|
+
"datatype": null,
|
|
1933
|
+
"class": "gloss:ConceptSource",
|
|
1934
|
+
"valuesFrom": null,
|
|
1935
|
+
"nodeKind": null,
|
|
1936
|
+
"minCount": null,
|
|
1937
|
+
"maxCount": null,
|
|
1938
|
+
"in": null
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"path": "gloss:hasDomain",
|
|
1942
|
+
"datatype": null,
|
|
1943
|
+
"class": "gloss:Reference",
|
|
1944
|
+
"valuesFrom": null,
|
|
1945
|
+
"nodeKind": null,
|
|
1946
|
+
"minCount": null,
|
|
1947
|
+
"maxCount": null,
|
|
1948
|
+
"in": null
|
|
1949
|
+
}
|
|
1950
|
+
]
|
|
1951
|
+
},
|
|
1952
|
+
"gloss:LocalizedConceptShape": {
|
|
1953
|
+
"iri": "https://www.glossarist.org/ontologies/LocalizedConceptShape",
|
|
1954
|
+
"compact": "gloss:LocalizedConceptShape",
|
|
1955
|
+
"label": "LocalizedConcept",
|
|
1956
|
+
"comment": null,
|
|
1957
|
+
"targetClass": "gloss:LocalizedConcept",
|
|
1958
|
+
"shapeClass": "skos:Concept",
|
|
1959
|
+
"constraints": [
|
|
1960
|
+
{
|
|
1961
|
+
"path": "gloss:isLocalizationOf",
|
|
1962
|
+
"datatype": null,
|
|
1963
|
+
"class": "gloss:Concept",
|
|
1964
|
+
"valuesFrom": null,
|
|
1965
|
+
"nodeKind": null,
|
|
1966
|
+
"minCount": 1,
|
|
1967
|
+
"maxCount": 1,
|
|
1968
|
+
"in": null
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"path": "gloss:language",
|
|
1972
|
+
"datatype": "xsd:string",
|
|
1973
|
+
"class": null,
|
|
1974
|
+
"valuesFrom": null,
|
|
1975
|
+
"nodeKind": null,
|
|
1976
|
+
"minCount": null,
|
|
1977
|
+
"maxCount": 1,
|
|
1978
|
+
"in": null
|
|
1979
|
+
},
|
|
1980
|
+
{
|
|
1981
|
+
"path": "gloss:hasDesignation",
|
|
1982
|
+
"datatype": null,
|
|
1983
|
+
"class": "gloss:Designation",
|
|
1984
|
+
"valuesFrom": null,
|
|
1985
|
+
"nodeKind": null,
|
|
1986
|
+
"minCount": null,
|
|
1987
|
+
"maxCount": null,
|
|
1988
|
+
"in": null
|
|
1989
|
+
},
|
|
1990
|
+
{
|
|
1991
|
+
"path": "gloss:hasDefinition",
|
|
1992
|
+
"datatype": null,
|
|
1993
|
+
"class": "gloss:DetailedDefinition",
|
|
1994
|
+
"valuesFrom": null,
|
|
1995
|
+
"nodeKind": null,
|
|
1996
|
+
"minCount": null,
|
|
1997
|
+
"maxCount": null,
|
|
1998
|
+
"in": null
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"path": "gloss:hasNote",
|
|
2002
|
+
"datatype": null,
|
|
2003
|
+
"class": "gloss:DetailedDefinition",
|
|
2004
|
+
"valuesFrom": null,
|
|
2005
|
+
"nodeKind": null,
|
|
2006
|
+
"minCount": null,
|
|
2007
|
+
"maxCount": null,
|
|
2008
|
+
"in": null
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"path": "gloss:hasExample",
|
|
2012
|
+
"datatype": null,
|
|
2013
|
+
"class": "gloss:DetailedDefinition",
|
|
2014
|
+
"valuesFrom": null,
|
|
2015
|
+
"nodeKind": null,
|
|
2016
|
+
"minCount": null,
|
|
2017
|
+
"maxCount": null,
|
|
2018
|
+
"in": null
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"path": "gloss:hasEntryStatus",
|
|
2022
|
+
"datatype": null,
|
|
2023
|
+
"class": "skos:Concept",
|
|
2024
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/entstatus>",
|
|
2025
|
+
"nodeKind": null,
|
|
2026
|
+
"minCount": null,
|
|
2027
|
+
"maxCount": 1,
|
|
2028
|
+
"in": null
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"path": "gloss:hasRelatedConcept",
|
|
2032
|
+
"datatype": null,
|
|
2033
|
+
"class": "gloss:RelatedConcept",
|
|
2034
|
+
"valuesFrom": null,
|
|
2035
|
+
"nodeKind": null,
|
|
2036
|
+
"minCount": null,
|
|
2037
|
+
"maxCount": null,
|
|
2038
|
+
"in": null
|
|
2039
|
+
},
|
|
2040
|
+
{
|
|
2041
|
+
"path": "gloss:hasDate",
|
|
2042
|
+
"datatype": null,
|
|
2043
|
+
"class": "gloss:ConceptDate",
|
|
2044
|
+
"valuesFrom": null,
|
|
2045
|
+
"nodeKind": null,
|
|
2046
|
+
"minCount": null,
|
|
2047
|
+
"maxCount": null,
|
|
2048
|
+
"in": null
|
|
2049
|
+
},
|
|
2050
|
+
{
|
|
2051
|
+
"path": "gloss:hasSource",
|
|
2052
|
+
"datatype": null,
|
|
2053
|
+
"class": "gloss:ConceptSource",
|
|
2054
|
+
"valuesFrom": null,
|
|
2055
|
+
"nodeKind": null,
|
|
2056
|
+
"minCount": null,
|
|
2057
|
+
"maxCount": null,
|
|
2058
|
+
"in": null
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"path": "gloss:hasReference",
|
|
2062
|
+
"datatype": null,
|
|
2063
|
+
"class": "gloss:Reference",
|
|
2064
|
+
"valuesFrom": null,
|
|
2065
|
+
"nodeKind": null,
|
|
2066
|
+
"minCount": null,
|
|
2067
|
+
"maxCount": null,
|
|
2068
|
+
"in": null
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
"path": "gloss:classification",
|
|
2072
|
+
"datatype": "xsd:string",
|
|
2073
|
+
"class": null,
|
|
2074
|
+
"valuesFrom": null,
|
|
2075
|
+
"nodeKind": null,
|
|
2076
|
+
"minCount": null,
|
|
2077
|
+
"maxCount": 1,
|
|
2078
|
+
"in": null
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"path": "gloss:domain",
|
|
2082
|
+
"datatype": "xsd:anyURI",
|
|
2083
|
+
"class": null,
|
|
2084
|
+
"valuesFrom": null,
|
|
2085
|
+
"nodeKind": null,
|
|
2086
|
+
"minCount": null,
|
|
2087
|
+
"maxCount": 1,
|
|
2088
|
+
"in": null
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"path": "gloss:script",
|
|
2092
|
+
"datatype": "xsd:string",
|
|
2093
|
+
"class": null,
|
|
2094
|
+
"valuesFrom": null,
|
|
2095
|
+
"nodeKind": null,
|
|
2096
|
+
"minCount": null,
|
|
2097
|
+
"maxCount": 1,
|
|
2098
|
+
"in": null
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"path": "gloss:conversionSystem",
|
|
2102
|
+
"datatype": "xsd:string",
|
|
2103
|
+
"class": null,
|
|
2104
|
+
"valuesFrom": null,
|
|
2105
|
+
"nodeKind": null,
|
|
2106
|
+
"minCount": null,
|
|
2107
|
+
"maxCount": 1,
|
|
2108
|
+
"in": null
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"path": "gloss:release",
|
|
2112
|
+
"datatype": "xsd:string",
|
|
2113
|
+
"class": null,
|
|
2114
|
+
"valuesFrom": null,
|
|
2115
|
+
"nodeKind": null,
|
|
2116
|
+
"minCount": null,
|
|
2117
|
+
"maxCount": 1,
|
|
2118
|
+
"in": null
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"path": "gloss:lineageSimilarity",
|
|
2122
|
+
"datatype": "xsd:integer",
|
|
2123
|
+
"class": null,
|
|
2124
|
+
"valuesFrom": null,
|
|
2125
|
+
"nodeKind": null,
|
|
2126
|
+
"minCount": null,
|
|
2127
|
+
"maxCount": 1,
|
|
2128
|
+
"in": null
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"path": "gloss:reviewType",
|
|
2132
|
+
"datatype": "xsd:string",
|
|
2133
|
+
"class": null,
|
|
2134
|
+
"valuesFrom": null,
|
|
2135
|
+
"nodeKind": null,
|
|
2136
|
+
"minCount": null,
|
|
2137
|
+
"maxCount": 1,
|
|
2138
|
+
"in": [
|
|
2139
|
+
"editorial",
|
|
2140
|
+
"substantive"
|
|
2141
|
+
]
|
|
2142
|
+
}
|
|
2143
|
+
]
|
|
2144
|
+
},
|
|
2145
|
+
"gloss:DesignationShape": {
|
|
2146
|
+
"iri": "https://www.glossarist.org/ontologies/DesignationShape",
|
|
2147
|
+
"compact": "gloss:DesignationShape",
|
|
2148
|
+
"label": "Designation",
|
|
2149
|
+
"comment": null,
|
|
2150
|
+
"targetClass": "gloss:Designation",
|
|
2151
|
+
"shapeClass": "xl:Label",
|
|
2152
|
+
"constraints": [
|
|
2153
|
+
{
|
|
2154
|
+
"path": "xl:literalForm",
|
|
2155
|
+
"datatype": null,
|
|
2156
|
+
"class": null,
|
|
2157
|
+
"valuesFrom": null,
|
|
2158
|
+
"nodeKind": null,
|
|
2159
|
+
"minCount": 1,
|
|
2160
|
+
"maxCount": 1,
|
|
2161
|
+
"in": null
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"path": "gloss:normativeStatus",
|
|
2165
|
+
"datatype": null,
|
|
2166
|
+
"class": "skos:Concept",
|
|
2167
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/norm>",
|
|
2168
|
+
"nodeKind": null,
|
|
2169
|
+
"minCount": null,
|
|
2170
|
+
"maxCount": 1,
|
|
2171
|
+
"in": null
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"path": "gloss:hasTermType",
|
|
2175
|
+
"datatype": null,
|
|
2176
|
+
"class": "skos:Concept",
|
|
2177
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/termtype>",
|
|
2178
|
+
"nodeKind": null,
|
|
2179
|
+
"minCount": null,
|
|
2180
|
+
"maxCount": 1,
|
|
2181
|
+
"in": null
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"path": "gloss:hasRelatedConcept",
|
|
2185
|
+
"datatype": null,
|
|
2186
|
+
"class": "gloss:RelatedConcept",
|
|
2187
|
+
"valuesFrom": null,
|
|
2188
|
+
"nodeKind": null,
|
|
2189
|
+
"minCount": null,
|
|
2190
|
+
"maxCount": null,
|
|
2191
|
+
"in": null
|
|
2192
|
+
},
|
|
2193
|
+
{
|
|
2194
|
+
"path": "gloss:hasSource",
|
|
2195
|
+
"datatype": null,
|
|
2196
|
+
"class": "gloss:ConceptSource",
|
|
2197
|
+
"valuesFrom": null,
|
|
2198
|
+
"nodeKind": null,
|
|
2199
|
+
"minCount": null,
|
|
2200
|
+
"maxCount": null,
|
|
2201
|
+
"in": null
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
"path": "gloss:hasPronunciation",
|
|
2205
|
+
"datatype": null,
|
|
2206
|
+
"class": "gloss:Pronunciation",
|
|
2207
|
+
"valuesFrom": null,
|
|
2208
|
+
"nodeKind": null,
|
|
2209
|
+
"minCount": null,
|
|
2210
|
+
"maxCount": null,
|
|
2211
|
+
"in": null
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"path": "gloss:language",
|
|
2215
|
+
"datatype": "xsd:string",
|
|
2216
|
+
"class": null,
|
|
2217
|
+
"valuesFrom": null,
|
|
2218
|
+
"nodeKind": null,
|
|
2219
|
+
"minCount": null,
|
|
2220
|
+
"maxCount": 1,
|
|
2221
|
+
"in": null
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
"path": "gloss:script",
|
|
2225
|
+
"datatype": "xsd:string",
|
|
2226
|
+
"class": null,
|
|
2227
|
+
"valuesFrom": null,
|
|
2228
|
+
"nodeKind": null,
|
|
2229
|
+
"minCount": null,
|
|
2230
|
+
"maxCount": 1,
|
|
2231
|
+
"in": null
|
|
2232
|
+
},
|
|
2233
|
+
{
|
|
2234
|
+
"path": "gloss:conversionSystem",
|
|
2235
|
+
"datatype": "xsd:string",
|
|
2236
|
+
"class": null,
|
|
2237
|
+
"valuesFrom": null,
|
|
2238
|
+
"nodeKind": null,
|
|
2239
|
+
"minCount": null,
|
|
2240
|
+
"maxCount": 1,
|
|
2241
|
+
"in": null
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"path": "gloss:isInternational",
|
|
2245
|
+
"datatype": "xsd:boolean",
|
|
2246
|
+
"class": null,
|
|
2247
|
+
"valuesFrom": null,
|
|
2248
|
+
"nodeKind": null,
|
|
2249
|
+
"minCount": null,
|
|
2250
|
+
"maxCount": 1,
|
|
2251
|
+
"in": null
|
|
2252
|
+
},
|
|
2253
|
+
{
|
|
2254
|
+
"path": "gloss:isAbsent",
|
|
2255
|
+
"datatype": "xsd:boolean",
|
|
2256
|
+
"class": null,
|
|
2257
|
+
"valuesFrom": null,
|
|
2258
|
+
"nodeKind": null,
|
|
2259
|
+
"minCount": null,
|
|
2260
|
+
"maxCount": 1,
|
|
2261
|
+
"in": null
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"path": "gloss:register",
|
|
2265
|
+
"datatype": "xsd:string",
|
|
2266
|
+
"class": null,
|
|
2267
|
+
"valuesFrom": null,
|
|
2268
|
+
"nodeKind": null,
|
|
2269
|
+
"minCount": null,
|
|
2270
|
+
"maxCount": 1,
|
|
2271
|
+
"in": null
|
|
2272
|
+
}
|
|
2273
|
+
]
|
|
2274
|
+
},
|
|
2275
|
+
"gloss:ExpressionShape": {
|
|
2276
|
+
"iri": "https://www.glossarist.org/ontologies/ExpressionShape",
|
|
2277
|
+
"compact": "gloss:ExpressionShape",
|
|
2278
|
+
"label": "Expression",
|
|
2279
|
+
"comment": null,
|
|
2280
|
+
"targetClass": "gloss:Expression",
|
|
2281
|
+
"shapeClass": null,
|
|
2282
|
+
"constraints": [
|
|
2283
|
+
{
|
|
2284
|
+
"path": "gloss:hasGrammarInfo",
|
|
2285
|
+
"datatype": null,
|
|
2286
|
+
"class": "gloss:GrammarInfo",
|
|
2287
|
+
"valuesFrom": null,
|
|
2288
|
+
"nodeKind": null,
|
|
2289
|
+
"minCount": null,
|
|
2290
|
+
"maxCount": null,
|
|
2291
|
+
"in": null
|
|
2292
|
+
}
|
|
2293
|
+
]
|
|
2294
|
+
},
|
|
2295
|
+
"gloss:AbbreviationShape": {
|
|
2296
|
+
"iri": "https://www.glossarist.org/ontologies/AbbreviationShape",
|
|
2297
|
+
"compact": "gloss:AbbreviationShape",
|
|
2298
|
+
"label": "Abbreviation",
|
|
2299
|
+
"comment": null,
|
|
2300
|
+
"targetClass": "gloss:Abbreviation",
|
|
2301
|
+
"shapeClass": null,
|
|
2302
|
+
"constraints": [
|
|
2303
|
+
{
|
|
2304
|
+
"path": "gloss:isAcronym",
|
|
2305
|
+
"datatype": "xsd:boolean",
|
|
2306
|
+
"class": null,
|
|
2307
|
+
"valuesFrom": null,
|
|
2308
|
+
"nodeKind": null,
|
|
2309
|
+
"minCount": null,
|
|
2310
|
+
"maxCount": 1,
|
|
2311
|
+
"in": null
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"path": "gloss:isInitialism",
|
|
2315
|
+
"datatype": "xsd:boolean",
|
|
2316
|
+
"class": null,
|
|
2317
|
+
"valuesFrom": null,
|
|
2318
|
+
"nodeKind": null,
|
|
2319
|
+
"minCount": null,
|
|
2320
|
+
"maxCount": 1,
|
|
2321
|
+
"in": null
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"path": "gloss:isTruncation",
|
|
2325
|
+
"datatype": "xsd:boolean",
|
|
2326
|
+
"class": null,
|
|
2327
|
+
"valuesFrom": null,
|
|
2328
|
+
"nodeKind": null,
|
|
2329
|
+
"minCount": null,
|
|
2330
|
+
"maxCount": 1,
|
|
2331
|
+
"in": null
|
|
2332
|
+
}
|
|
2333
|
+
]
|
|
2334
|
+
},
|
|
2335
|
+
"gloss:SymbolShape": {
|
|
2336
|
+
"iri": "https://www.glossarist.org/ontologies/SymbolShape",
|
|
2337
|
+
"compact": "gloss:SymbolShape",
|
|
2338
|
+
"label": "Symbol",
|
|
2339
|
+
"comment": null,
|
|
2340
|
+
"targetClass": "gloss:Symbol",
|
|
2341
|
+
"shapeClass": null,
|
|
2342
|
+
"constraints": []
|
|
2343
|
+
},
|
|
2344
|
+
"gloss:LetterSymbolShape": {
|
|
2345
|
+
"iri": "https://www.glossarist.org/ontologies/LetterSymbolShape",
|
|
2346
|
+
"compact": "gloss:LetterSymbolShape",
|
|
2347
|
+
"label": "LetterSymbol",
|
|
2348
|
+
"comment": null,
|
|
2349
|
+
"targetClass": "gloss:LetterSymbol",
|
|
2350
|
+
"shapeClass": null,
|
|
2351
|
+
"constraints": [
|
|
2352
|
+
{
|
|
2353
|
+
"path": "gloss:text",
|
|
2354
|
+
"datatype": "xsd:string",
|
|
2355
|
+
"class": null,
|
|
2356
|
+
"valuesFrom": null,
|
|
2357
|
+
"nodeKind": null,
|
|
2358
|
+
"minCount": null,
|
|
2359
|
+
"maxCount": 1,
|
|
2360
|
+
"in": null
|
|
2361
|
+
}
|
|
2362
|
+
]
|
|
2363
|
+
},
|
|
2364
|
+
"gloss:GraphicalSymbolShape": {
|
|
2365
|
+
"iri": "https://www.glossarist.org/ontologies/GraphicalSymbolShape",
|
|
2366
|
+
"compact": "gloss:GraphicalSymbolShape",
|
|
2367
|
+
"label": "GraphicalSymbol",
|
|
2368
|
+
"comment": null,
|
|
2369
|
+
"targetClass": "gloss:GraphicalSymbol",
|
|
2370
|
+
"shapeClass": null,
|
|
2371
|
+
"constraints": [
|
|
2372
|
+
{
|
|
2373
|
+
"path": "gloss:text",
|
|
2374
|
+
"datatype": "xsd:string",
|
|
2375
|
+
"class": null,
|
|
2376
|
+
"valuesFrom": null,
|
|
2377
|
+
"nodeKind": null,
|
|
2378
|
+
"minCount": null,
|
|
2379
|
+
"maxCount": 1,
|
|
2380
|
+
"in": null
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
"path": "gloss:image",
|
|
2384
|
+
"datatype": "xsd:anyURI",
|
|
2385
|
+
"class": null,
|
|
2386
|
+
"valuesFrom": null,
|
|
2387
|
+
"nodeKind": null,
|
|
2388
|
+
"minCount": null,
|
|
2389
|
+
"maxCount": 1,
|
|
2390
|
+
"in": null
|
|
2391
|
+
}
|
|
2392
|
+
]
|
|
2393
|
+
},
|
|
2394
|
+
"gloss:PrefixShape": {
|
|
2395
|
+
"iri": "https://www.glossarist.org/ontologies/PrefixShape",
|
|
2396
|
+
"compact": "gloss:PrefixShape",
|
|
2397
|
+
"label": "Prefix",
|
|
2398
|
+
"comment": null,
|
|
2399
|
+
"targetClass": "gloss:Prefix",
|
|
2400
|
+
"shapeClass": null,
|
|
2401
|
+
"constraints": []
|
|
2402
|
+
},
|
|
2403
|
+
"gloss:SuffixShape": {
|
|
2404
|
+
"iri": "https://www.glossarist.org/ontologies/SuffixShape",
|
|
2405
|
+
"compact": "gloss:SuffixShape",
|
|
2406
|
+
"label": "Suffix",
|
|
2407
|
+
"comment": null,
|
|
2408
|
+
"targetClass": "gloss:Suffix",
|
|
2409
|
+
"shapeClass": null,
|
|
2410
|
+
"constraints": []
|
|
2411
|
+
},
|
|
2412
|
+
"gloss:PronunciationShape": {
|
|
2413
|
+
"iri": "https://www.glossarist.org/ontologies/PronunciationShape",
|
|
2414
|
+
"compact": "gloss:PronunciationShape",
|
|
2415
|
+
"label": "Pronunciation",
|
|
2416
|
+
"comment": null,
|
|
2417
|
+
"targetClass": "gloss:Pronunciation",
|
|
2418
|
+
"shapeClass": null,
|
|
2419
|
+
"constraints": [
|
|
2420
|
+
{
|
|
2421
|
+
"path": "gloss:pronunciationContent",
|
|
2422
|
+
"datatype": "xsd:string",
|
|
2423
|
+
"class": null,
|
|
2424
|
+
"valuesFrom": null,
|
|
2425
|
+
"nodeKind": null,
|
|
2426
|
+
"minCount": 1,
|
|
2427
|
+
"maxCount": 1,
|
|
2428
|
+
"in": null
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"path": "gloss:pronunciationLanguage",
|
|
2432
|
+
"datatype": "xsd:string",
|
|
2433
|
+
"class": null,
|
|
2434
|
+
"valuesFrom": null,
|
|
2435
|
+
"nodeKind": null,
|
|
2436
|
+
"minCount": null,
|
|
2437
|
+
"maxCount": 1,
|
|
2438
|
+
"in": null
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
"path": "gloss:pronunciationScript",
|
|
2442
|
+
"datatype": "xsd:string",
|
|
2443
|
+
"class": null,
|
|
2444
|
+
"valuesFrom": null,
|
|
2445
|
+
"nodeKind": null,
|
|
2446
|
+
"minCount": null,
|
|
2447
|
+
"maxCount": 1,
|
|
2448
|
+
"in": null
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"path": "gloss:pronunciationCountry",
|
|
2452
|
+
"datatype": "xsd:string",
|
|
2453
|
+
"class": null,
|
|
2454
|
+
"valuesFrom": null,
|
|
2455
|
+
"nodeKind": null,
|
|
2456
|
+
"minCount": null,
|
|
2457
|
+
"maxCount": 1,
|
|
2458
|
+
"in": null
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"path": "gloss:pronunciationSystem",
|
|
2462
|
+
"datatype": "xsd:string",
|
|
2463
|
+
"class": null,
|
|
2464
|
+
"valuesFrom": null,
|
|
2465
|
+
"nodeKind": null,
|
|
2466
|
+
"minCount": null,
|
|
2467
|
+
"maxCount": 1,
|
|
2468
|
+
"in": null
|
|
2469
|
+
}
|
|
2470
|
+
]
|
|
2471
|
+
},
|
|
2472
|
+
"gloss:DetailedDefinitionShape": {
|
|
2473
|
+
"iri": "https://www.glossarist.org/ontologies/DetailedDefinitionShape",
|
|
2474
|
+
"compact": "gloss:DetailedDefinitionShape",
|
|
2475
|
+
"label": "DetailedDefinition",
|
|
2476
|
+
"comment": null,
|
|
2477
|
+
"targetClass": "gloss:DetailedDefinition",
|
|
2478
|
+
"shapeClass": null,
|
|
2479
|
+
"constraints": [
|
|
2480
|
+
{
|
|
2481
|
+
"path": "rdf:value",
|
|
2482
|
+
"datatype": null,
|
|
2483
|
+
"class": null,
|
|
2484
|
+
"valuesFrom": null,
|
|
2485
|
+
"nodeKind": null,
|
|
2486
|
+
"minCount": 1,
|
|
2487
|
+
"maxCount": 1,
|
|
2488
|
+
"in": null
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"path": "gloss:hasSource",
|
|
2492
|
+
"datatype": null,
|
|
2493
|
+
"class": "gloss:ConceptSource",
|
|
2494
|
+
"valuesFrom": null,
|
|
2495
|
+
"nodeKind": null,
|
|
2496
|
+
"minCount": null,
|
|
2497
|
+
"maxCount": null,
|
|
2498
|
+
"in": null
|
|
2499
|
+
}
|
|
2500
|
+
]
|
|
2501
|
+
},
|
|
2502
|
+
"gloss:ConceptSourceShape": {
|
|
2503
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptSourceShape",
|
|
2504
|
+
"compact": "gloss:ConceptSourceShape",
|
|
2505
|
+
"label": "ConceptSource",
|
|
2506
|
+
"comment": null,
|
|
2507
|
+
"targetClass": "gloss:ConceptSource",
|
|
2508
|
+
"shapeClass": null,
|
|
2509
|
+
"constraints": [
|
|
2510
|
+
{
|
|
2511
|
+
"path": "gloss:sourceType",
|
|
2512
|
+
"datatype": null,
|
|
2513
|
+
"class": "skos:Concept",
|
|
2514
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/srctype>",
|
|
2515
|
+
"nodeKind": null,
|
|
2516
|
+
"minCount": null,
|
|
2517
|
+
"maxCount": 1,
|
|
2518
|
+
"in": null
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"path": "gloss:sourceStatus",
|
|
2522
|
+
"datatype": null,
|
|
2523
|
+
"class": "skos:Concept",
|
|
2524
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/srcstatus>",
|
|
2525
|
+
"nodeKind": null,
|
|
2526
|
+
"minCount": null,
|
|
2527
|
+
"maxCount": 1,
|
|
2528
|
+
"in": null
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"path": "gloss:sourceOrigin",
|
|
2532
|
+
"datatype": null,
|
|
2533
|
+
"class": "gloss:Citation",
|
|
2534
|
+
"valuesFrom": null,
|
|
2535
|
+
"nodeKind": null,
|
|
2536
|
+
"minCount": null,
|
|
2537
|
+
"maxCount": 1,
|
|
2538
|
+
"in": null
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"path": "gloss:modification",
|
|
2542
|
+
"datatype": "xsd:string",
|
|
2543
|
+
"class": null,
|
|
2544
|
+
"valuesFrom": null,
|
|
2545
|
+
"nodeKind": null,
|
|
2546
|
+
"minCount": null,
|
|
2547
|
+
"maxCount": 1,
|
|
2548
|
+
"in": null
|
|
2549
|
+
}
|
|
2550
|
+
]
|
|
2551
|
+
},
|
|
2552
|
+
"gloss:ConceptDateShape": {
|
|
2553
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptDateShape",
|
|
2554
|
+
"compact": "gloss:ConceptDateShape",
|
|
2555
|
+
"label": "ConceptDate",
|
|
2556
|
+
"comment": null,
|
|
2557
|
+
"targetClass": "gloss:ConceptDate",
|
|
2558
|
+
"shapeClass": null,
|
|
2559
|
+
"constraints": [
|
|
2560
|
+
{
|
|
2561
|
+
"path": "gloss:dateValue",
|
|
2562
|
+
"datatype": "xsd:dateTime",
|
|
2563
|
+
"class": null,
|
|
2564
|
+
"valuesFrom": null,
|
|
2565
|
+
"nodeKind": null,
|
|
2566
|
+
"minCount": 1,
|
|
2567
|
+
"maxCount": 1,
|
|
2568
|
+
"in": null
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
"path": "gloss:dateType",
|
|
2572
|
+
"datatype": null,
|
|
2573
|
+
"class": "skos:Concept",
|
|
2574
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/datetype>",
|
|
2575
|
+
"nodeKind": null,
|
|
2576
|
+
"minCount": 1,
|
|
2577
|
+
"maxCount": 1,
|
|
2578
|
+
"in": null
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"path": "gloss:eventDescription",
|
|
2582
|
+
"datatype": "xsd:string",
|
|
2583
|
+
"class": null,
|
|
2584
|
+
"valuesFrom": null,
|
|
2585
|
+
"nodeKind": null,
|
|
2586
|
+
"minCount": null,
|
|
2587
|
+
"maxCount": 1,
|
|
2588
|
+
"in": null
|
|
2589
|
+
}
|
|
2590
|
+
]
|
|
2591
|
+
},
|
|
2592
|
+
"gloss:NonVerbalRepresentationShape": {
|
|
2593
|
+
"iri": "https://www.glossarist.org/ontologies/NonVerbalRepresentationShape",
|
|
2594
|
+
"compact": "gloss:NonVerbalRepresentationShape",
|
|
2595
|
+
"label": "NonVerbalRepresentation",
|
|
2596
|
+
"comment": null,
|
|
2597
|
+
"targetClass": "gloss:NonVerbalRepresentation",
|
|
2598
|
+
"shapeClass": null,
|
|
2599
|
+
"constraints": [
|
|
2600
|
+
{
|
|
2601
|
+
"path": "gloss:representationType",
|
|
2602
|
+
"datatype": "xsd:string",
|
|
2603
|
+
"class": null,
|
|
2604
|
+
"valuesFrom": null,
|
|
2605
|
+
"nodeKind": null,
|
|
2606
|
+
"minCount": 1,
|
|
2607
|
+
"maxCount": 1,
|
|
2608
|
+
"in": [
|
|
2609
|
+
"image",
|
|
2610
|
+
"table",
|
|
2611
|
+
"formula"
|
|
2612
|
+
]
|
|
2613
|
+
},
|
|
2614
|
+
{
|
|
2615
|
+
"path": "gloss:representationRef",
|
|
2616
|
+
"datatype": "xsd:anyURI",
|
|
2617
|
+
"class": null,
|
|
2618
|
+
"valuesFrom": null,
|
|
2619
|
+
"nodeKind": null,
|
|
2620
|
+
"minCount": 1,
|
|
2621
|
+
"maxCount": 1,
|
|
2622
|
+
"in": null
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"path": "gloss:hasSource",
|
|
2626
|
+
"datatype": null,
|
|
2627
|
+
"class": "gloss:ConceptSource",
|
|
2628
|
+
"valuesFrom": null,
|
|
2629
|
+
"nodeKind": null,
|
|
2630
|
+
"minCount": null,
|
|
2631
|
+
"maxCount": null,
|
|
2632
|
+
"in": null
|
|
2633
|
+
}
|
|
2634
|
+
]
|
|
2635
|
+
},
|
|
2636
|
+
"gloss:ReferenceShape": {
|
|
2637
|
+
"iri": "https://www.glossarist.org/ontologies/ReferenceShape",
|
|
2638
|
+
"compact": "gloss:ReferenceShape",
|
|
2639
|
+
"label": "Reference",
|
|
2640
|
+
"comment": null,
|
|
2641
|
+
"targetClass": "gloss:Reference",
|
|
2642
|
+
"shapeClass": null,
|
|
2643
|
+
"constraints": [
|
|
2644
|
+
{
|
|
2645
|
+
"path": "gloss:source",
|
|
2646
|
+
"datatype": null,
|
|
2647
|
+
"class": null,
|
|
2648
|
+
"valuesFrom": null,
|
|
2649
|
+
"nodeKind": null,
|
|
2650
|
+
"minCount": 1,
|
|
2651
|
+
"maxCount": null,
|
|
2652
|
+
"in": null
|
|
2653
|
+
},
|
|
2654
|
+
{
|
|
2655
|
+
"path": "gloss:refId",
|
|
2656
|
+
"datatype": null,
|
|
2657
|
+
"class": null,
|
|
2658
|
+
"valuesFrom": null,
|
|
2659
|
+
"nodeKind": null,
|
|
2660
|
+
"minCount": 1,
|
|
2661
|
+
"maxCount": null,
|
|
2662
|
+
"in": null
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
"path": "gloss:source",
|
|
2666
|
+
"datatype": "xsd:string",
|
|
2667
|
+
"class": null,
|
|
2668
|
+
"valuesFrom": null,
|
|
2669
|
+
"nodeKind": null,
|
|
2670
|
+
"minCount": null,
|
|
2671
|
+
"maxCount": 1,
|
|
2672
|
+
"in": null
|
|
2673
|
+
},
|
|
2674
|
+
{
|
|
2675
|
+
"path": "gloss:refId",
|
|
2676
|
+
"datatype": "xsd:string",
|
|
2677
|
+
"class": null,
|
|
2678
|
+
"valuesFrom": null,
|
|
2679
|
+
"nodeKind": null,
|
|
2680
|
+
"minCount": null,
|
|
2681
|
+
"maxCount": 1,
|
|
2682
|
+
"in": null
|
|
2683
|
+
},
|
|
2684
|
+
{
|
|
2685
|
+
"path": "gloss:refVersion",
|
|
2686
|
+
"datatype": "xsd:string",
|
|
2687
|
+
"class": null,
|
|
2688
|
+
"valuesFrom": null,
|
|
2689
|
+
"nodeKind": null,
|
|
2690
|
+
"minCount": null,
|
|
2691
|
+
"maxCount": 1,
|
|
2692
|
+
"in": null
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"path": "gloss:refLink",
|
|
2696
|
+
"datatype": "xsd:anyURI",
|
|
2697
|
+
"class": null,
|
|
2698
|
+
"valuesFrom": null,
|
|
2699
|
+
"nodeKind": null,
|
|
2700
|
+
"minCount": null,
|
|
2701
|
+
"maxCount": 1,
|
|
2702
|
+
"in": null
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
"path": "gloss:refType",
|
|
2706
|
+
"datatype": "xsd:string",
|
|
2707
|
+
"class": null,
|
|
2708
|
+
"valuesFrom": null,
|
|
2709
|
+
"nodeKind": null,
|
|
2710
|
+
"minCount": null,
|
|
2711
|
+
"maxCount": 1,
|
|
2712
|
+
"in": null
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
"path": "gloss:urn",
|
|
2716
|
+
"datatype": "xsd:anyURI",
|
|
2717
|
+
"class": null,
|
|
2718
|
+
"valuesFrom": null,
|
|
2719
|
+
"nodeKind": null,
|
|
2720
|
+
"minCount": null,
|
|
2721
|
+
"maxCount": 1,
|
|
2722
|
+
"in": null
|
|
2723
|
+
},
|
|
2724
|
+
{
|
|
2725
|
+
"path": "gloss:term",
|
|
2726
|
+
"datatype": "xsd:string",
|
|
2727
|
+
"class": null,
|
|
2728
|
+
"valuesFrom": null,
|
|
2729
|
+
"nodeKind": null,
|
|
2730
|
+
"minCount": null,
|
|
2731
|
+
"maxCount": 1,
|
|
2732
|
+
"in": null
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"path": "gloss:hasLocality",
|
|
2736
|
+
"datatype": null,
|
|
2737
|
+
"class": "gloss:Locality",
|
|
2738
|
+
"valuesFrom": null,
|
|
2739
|
+
"nodeKind": null,
|
|
2740
|
+
"minCount": null,
|
|
2741
|
+
"maxCount": 1,
|
|
2742
|
+
"in": null
|
|
2743
|
+
}
|
|
2744
|
+
]
|
|
2745
|
+
},
|
|
2746
|
+
"gloss:LocalityShape": {
|
|
2747
|
+
"iri": "https://www.glossarist.org/ontologies/LocalityShape",
|
|
2748
|
+
"compact": "gloss:LocalityShape",
|
|
2749
|
+
"label": "Locality",
|
|
2750
|
+
"comment": null,
|
|
2751
|
+
"targetClass": "gloss:Locality",
|
|
2752
|
+
"shapeClass": null,
|
|
2753
|
+
"constraints": [
|
|
2754
|
+
{
|
|
2755
|
+
"path": "gloss:localityType",
|
|
2756
|
+
"datatype": "xsd:string",
|
|
2757
|
+
"class": null,
|
|
2758
|
+
"valuesFrom": null,
|
|
2759
|
+
"nodeKind": null,
|
|
2760
|
+
"minCount": 1,
|
|
2761
|
+
"maxCount": 1,
|
|
2762
|
+
"in": null
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"path": "gloss:referenceFrom",
|
|
2766
|
+
"datatype": "xsd:string",
|
|
2767
|
+
"class": null,
|
|
2768
|
+
"valuesFrom": null,
|
|
2769
|
+
"nodeKind": null,
|
|
2770
|
+
"minCount": null,
|
|
2771
|
+
"maxCount": 1,
|
|
2772
|
+
"in": null
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
"path": "gloss:referenceTo",
|
|
2776
|
+
"datatype": "xsd:string",
|
|
2777
|
+
"class": null,
|
|
2778
|
+
"valuesFrom": null,
|
|
2779
|
+
"nodeKind": null,
|
|
2780
|
+
"minCount": null,
|
|
2781
|
+
"maxCount": 1,
|
|
2782
|
+
"in": null
|
|
2783
|
+
}
|
|
2784
|
+
]
|
|
2785
|
+
},
|
|
2786
|
+
"gloss:CitationShape": {
|
|
2787
|
+
"iri": "https://www.glossarist.org/ontologies/CitationShape",
|
|
2788
|
+
"compact": "gloss:CitationShape",
|
|
2789
|
+
"label": "Citation",
|
|
2790
|
+
"comment": null,
|
|
2791
|
+
"targetClass": "gloss:Citation",
|
|
2792
|
+
"shapeClass": null,
|
|
2793
|
+
"constraints": [
|
|
2794
|
+
{
|
|
2795
|
+
"path": "gloss:hasCitationRef",
|
|
2796
|
+
"datatype": null,
|
|
2797
|
+
"class": "gloss:CitationRef",
|
|
2798
|
+
"valuesFrom": null,
|
|
2799
|
+
"nodeKind": null,
|
|
2800
|
+
"minCount": null,
|
|
2801
|
+
"maxCount": 1,
|
|
2802
|
+
"in": null
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
"path": "gloss:hasCitationLocality",
|
|
2806
|
+
"datatype": null,
|
|
2807
|
+
"class": "gloss:Locality",
|
|
2808
|
+
"valuesFrom": null,
|
|
2809
|
+
"nodeKind": null,
|
|
2810
|
+
"minCount": null,
|
|
2811
|
+
"maxCount": 1,
|
|
2812
|
+
"in": null
|
|
2813
|
+
},
|
|
2814
|
+
{
|
|
2815
|
+
"path": "gloss:citationLink",
|
|
2816
|
+
"datatype": "xsd:anyURI",
|
|
2817
|
+
"class": null,
|
|
2818
|
+
"valuesFrom": null,
|
|
2819
|
+
"nodeKind": null,
|
|
2820
|
+
"minCount": null,
|
|
2821
|
+
"maxCount": 1,
|
|
2822
|
+
"in": null
|
|
2823
|
+
},
|
|
2824
|
+
{
|
|
2825
|
+
"path": "gloss:citationOriginal",
|
|
2826
|
+
"datatype": "xsd:string",
|
|
2827
|
+
"class": null,
|
|
2828
|
+
"valuesFrom": null,
|
|
2829
|
+
"nodeKind": null,
|
|
2830
|
+
"minCount": null,
|
|
2831
|
+
"maxCount": 1,
|
|
2832
|
+
"in": null
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"path": "gloss:hasCustomLocality",
|
|
2836
|
+
"datatype": null,
|
|
2837
|
+
"class": "gloss:CustomLocality",
|
|
2838
|
+
"valuesFrom": null,
|
|
2839
|
+
"nodeKind": null,
|
|
2840
|
+
"minCount": null,
|
|
2841
|
+
"maxCount": null,
|
|
2842
|
+
"in": null
|
|
2843
|
+
}
|
|
2844
|
+
]
|
|
2845
|
+
},
|
|
2846
|
+
"gloss:CitationRefShape": {
|
|
2847
|
+
"iri": "https://www.glossarist.org/ontologies/CitationRefShape",
|
|
2848
|
+
"compact": "gloss:CitationRefShape",
|
|
2849
|
+
"label": "CitationRef",
|
|
2850
|
+
"comment": null,
|
|
2851
|
+
"targetClass": "gloss:CitationRef",
|
|
2852
|
+
"shapeClass": null,
|
|
2853
|
+
"constraints": [
|
|
2854
|
+
{
|
|
2855
|
+
"path": "gloss:citationRefSource",
|
|
2856
|
+
"datatype": "xsd:string",
|
|
2857
|
+
"class": null,
|
|
2858
|
+
"valuesFrom": null,
|
|
2859
|
+
"nodeKind": null,
|
|
2860
|
+
"minCount": null,
|
|
2861
|
+
"maxCount": 1,
|
|
2862
|
+
"in": null
|
|
2863
|
+
},
|
|
2864
|
+
{
|
|
2865
|
+
"path": "gloss:citationRefId",
|
|
2866
|
+
"datatype": "xsd:string",
|
|
2867
|
+
"class": null,
|
|
2868
|
+
"valuesFrom": null,
|
|
2869
|
+
"nodeKind": null,
|
|
2870
|
+
"minCount": null,
|
|
2871
|
+
"maxCount": 1,
|
|
2872
|
+
"in": null
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
"path": "gloss:citationRefVersion",
|
|
2876
|
+
"datatype": "xsd:string",
|
|
2877
|
+
"class": null,
|
|
2878
|
+
"valuesFrom": null,
|
|
2879
|
+
"nodeKind": null,
|
|
2880
|
+
"minCount": null,
|
|
2881
|
+
"maxCount": 1,
|
|
2882
|
+
"in": null
|
|
2883
|
+
}
|
|
2884
|
+
]
|
|
2885
|
+
},
|
|
2886
|
+
"gloss:ConceptRefShape": {
|
|
2887
|
+
"iri": "https://www.glossarist.org/ontologies/ConceptRefShape",
|
|
2888
|
+
"compact": "gloss:ConceptRefShape",
|
|
2889
|
+
"label": "ConceptRef",
|
|
2890
|
+
"comment": null,
|
|
2891
|
+
"targetClass": "gloss:ConceptRef",
|
|
2892
|
+
"shapeClass": null,
|
|
2893
|
+
"constraints": [
|
|
2894
|
+
{
|
|
2895
|
+
"path": "gloss:conceptRefSource",
|
|
2896
|
+
"datatype": "xsd:string",
|
|
2897
|
+
"class": null,
|
|
2898
|
+
"valuesFrom": null,
|
|
2899
|
+
"nodeKind": null,
|
|
2900
|
+
"minCount": null,
|
|
2901
|
+
"maxCount": 1,
|
|
2902
|
+
"in": null
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"path": "gloss:conceptRefId",
|
|
2906
|
+
"datatype": "xsd:string",
|
|
2907
|
+
"class": null,
|
|
2908
|
+
"valuesFrom": null,
|
|
2909
|
+
"nodeKind": null,
|
|
2910
|
+
"minCount": null,
|
|
2911
|
+
"maxCount": 1,
|
|
2912
|
+
"in": null
|
|
2913
|
+
}
|
|
2914
|
+
]
|
|
2915
|
+
},
|
|
2916
|
+
"gloss:CustomLocalityShape": {
|
|
2917
|
+
"iri": "https://www.glossarist.org/ontologies/CustomLocalityShape",
|
|
2918
|
+
"compact": "gloss:CustomLocalityShape",
|
|
2919
|
+
"label": "CustomLocality",
|
|
2920
|
+
"comment": null,
|
|
2921
|
+
"targetClass": "gloss:CustomLocality",
|
|
2922
|
+
"shapeClass": null,
|
|
2923
|
+
"constraints": [
|
|
2924
|
+
{
|
|
2925
|
+
"path": "gloss:customLocalityName",
|
|
2926
|
+
"datatype": "xsd:string",
|
|
2927
|
+
"class": null,
|
|
2928
|
+
"valuesFrom": null,
|
|
2929
|
+
"nodeKind": null,
|
|
2930
|
+
"minCount": 1,
|
|
2931
|
+
"maxCount": 1,
|
|
2932
|
+
"in": null
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
"path": "gloss:customLocalityValue",
|
|
2936
|
+
"datatype": "xsd:string",
|
|
2937
|
+
"class": null,
|
|
2938
|
+
"valuesFrom": null,
|
|
2939
|
+
"nodeKind": null,
|
|
2940
|
+
"minCount": 1,
|
|
2941
|
+
"maxCount": 1,
|
|
2942
|
+
"in": null
|
|
2943
|
+
}
|
|
2944
|
+
]
|
|
2945
|
+
},
|
|
2946
|
+
"gloss:GrammarInfoShape": {
|
|
2947
|
+
"iri": "https://www.glossarist.org/ontologies/GrammarInfoShape",
|
|
2948
|
+
"compact": "gloss:GrammarInfoShape",
|
|
2949
|
+
"label": "GrammarInfo",
|
|
2950
|
+
"comment": null,
|
|
2951
|
+
"targetClass": "gloss:GrammarInfo",
|
|
2952
|
+
"shapeClass": null,
|
|
2953
|
+
"constraints": [
|
|
2954
|
+
{
|
|
2955
|
+
"path": "gloss:gender",
|
|
2956
|
+
"datatype": null,
|
|
2957
|
+
"class": "skos:Concept",
|
|
2958
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/gender>",
|
|
2959
|
+
"nodeKind": null,
|
|
2960
|
+
"minCount": null,
|
|
2961
|
+
"maxCount": null,
|
|
2962
|
+
"in": null
|
|
2963
|
+
},
|
|
2964
|
+
{
|
|
2965
|
+
"path": "gloss:number",
|
|
2966
|
+
"datatype": null,
|
|
2967
|
+
"class": "skos:Concept",
|
|
2968
|
+
"valuesFrom": "<https://www.glossarist.org/ontologies/number>",
|
|
2969
|
+
"nodeKind": null,
|
|
2970
|
+
"minCount": null,
|
|
2971
|
+
"maxCount": null,
|
|
2972
|
+
"in": null
|
|
2973
|
+
},
|
|
2974
|
+
{
|
|
2975
|
+
"path": "gloss:partOfSpeech",
|
|
2976
|
+
"datatype": "xsd:string",
|
|
2977
|
+
"class": null,
|
|
2978
|
+
"valuesFrom": null,
|
|
2979
|
+
"nodeKind": null,
|
|
2980
|
+
"minCount": null,
|
|
2981
|
+
"maxCount": 1,
|
|
2982
|
+
"in": null
|
|
2983
|
+
}
|
|
2984
|
+
]
|
|
2985
|
+
}
|
|
2986
|
+
},
|
|
2987
|
+
"shapesByTargetClass": {
|
|
2988
|
+
"gloss:Concept": [
|
|
2989
|
+
"gloss:ConceptShape"
|
|
2990
|
+
],
|
|
2991
|
+
"gloss:LocalizedConcept": [
|
|
2992
|
+
"gloss:LocalizedConceptShape"
|
|
2993
|
+
],
|
|
2994
|
+
"gloss:Designation": [
|
|
2995
|
+
"gloss:DesignationShape"
|
|
2996
|
+
],
|
|
2997
|
+
"gloss:Expression": [
|
|
2998
|
+
"gloss:ExpressionShape"
|
|
2999
|
+
],
|
|
3000
|
+
"gloss:Abbreviation": [
|
|
3001
|
+
"gloss:AbbreviationShape"
|
|
3002
|
+
],
|
|
3003
|
+
"gloss:Symbol": [
|
|
3004
|
+
"gloss:SymbolShape"
|
|
3005
|
+
],
|
|
3006
|
+
"gloss:LetterSymbol": [
|
|
3007
|
+
"gloss:LetterSymbolShape"
|
|
3008
|
+
],
|
|
3009
|
+
"gloss:GraphicalSymbol": [
|
|
3010
|
+
"gloss:GraphicalSymbolShape"
|
|
3011
|
+
],
|
|
3012
|
+
"gloss:Prefix": [
|
|
3013
|
+
"gloss:PrefixShape"
|
|
3014
|
+
],
|
|
3015
|
+
"gloss:Suffix": [
|
|
3016
|
+
"gloss:SuffixShape"
|
|
3017
|
+
],
|
|
3018
|
+
"gloss:Pronunciation": [
|
|
3019
|
+
"gloss:PronunciationShape"
|
|
3020
|
+
],
|
|
3021
|
+
"gloss:DetailedDefinition": [
|
|
3022
|
+
"gloss:DetailedDefinitionShape"
|
|
3023
|
+
],
|
|
3024
|
+
"gloss:ConceptSource": [
|
|
3025
|
+
"gloss:ConceptSourceShape"
|
|
3026
|
+
],
|
|
3027
|
+
"gloss:ConceptDate": [
|
|
3028
|
+
"gloss:ConceptDateShape"
|
|
3029
|
+
],
|
|
3030
|
+
"gloss:NonVerbalRepresentation": [
|
|
3031
|
+
"gloss:NonVerbalRepresentationShape"
|
|
3032
|
+
],
|
|
3033
|
+
"gloss:Reference": [
|
|
3034
|
+
"gloss:ReferenceShape"
|
|
3035
|
+
],
|
|
3036
|
+
"gloss:Locality": [
|
|
3037
|
+
"gloss:LocalityShape"
|
|
3038
|
+
],
|
|
3039
|
+
"gloss:Citation": [
|
|
3040
|
+
"gloss:CitationShape"
|
|
3041
|
+
],
|
|
3042
|
+
"gloss:CitationRef": [
|
|
3043
|
+
"gloss:CitationRefShape"
|
|
3044
|
+
],
|
|
3045
|
+
"gloss:ConceptRef": [
|
|
3046
|
+
"gloss:ConceptRefShape"
|
|
3047
|
+
],
|
|
3048
|
+
"gloss:CustomLocality": [
|
|
3049
|
+
"gloss:CustomLocalityShape"
|
|
3050
|
+
],
|
|
3051
|
+
"gloss:GrammarInfo": [
|
|
3052
|
+
"gloss:GrammarInfoShape"
|
|
3053
|
+
]
|
|
3054
|
+
},
|
|
3055
|
+
"annotationProperties": [
|
|
3056
|
+
{
|
|
3057
|
+
"iri": "http://www.w3.org/2000/01/rdf-schema#label",
|
|
3058
|
+
"compact": "rdfs:label",
|
|
3059
|
+
"label": "label"
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
"iri": "http://www.w3.org/2000/01/rdf-schema#comment",
|
|
3063
|
+
"compact": "rdfs:comment",
|
|
3064
|
+
"label": "comment"
|
|
3065
|
+
},
|
|
3066
|
+
{
|
|
3067
|
+
"iri": "http://www.w3.org/2000/01/rdf-schema#seeAlso",
|
|
3068
|
+
"compact": "rdfs:seeAlso",
|
|
3069
|
+
"label": "seeAlso"
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"iri": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
|
|
3073
|
+
"compact": "rdfs:isDefinedBy",
|
|
3074
|
+
"label": "isDefinedBy"
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"iri": "http://purl.org/dc/terms/title",
|
|
3078
|
+
"compact": "dcterms:title",
|
|
3079
|
+
"label": "title"
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"iri": "http://purl.org/dc/terms/description",
|
|
3083
|
+
"compact": "dcterms:description",
|
|
3084
|
+
"label": "description"
|
|
3085
|
+
},
|
|
3086
|
+
{
|
|
3087
|
+
"iri": "http://purl.org/dc/terms/source",
|
|
3088
|
+
"compact": "dcterms:source",
|
|
3089
|
+
"label": "source"
|
|
3090
|
+
},
|
|
3091
|
+
{
|
|
3092
|
+
"iri": "http://purl.org/dc/terms/license",
|
|
3093
|
+
"compact": "dcterms:license",
|
|
3094
|
+
"label": "license"
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"iri": "http://purl.org/dc/terms/created",
|
|
3098
|
+
"compact": "dcterms:created",
|
|
3099
|
+
"label": "created"
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"iri": "http://purl.org/vocab/vann/preferredNamespacePrefix",
|
|
3103
|
+
"compact": "vann:preferredNamespacePrefix",
|
|
3104
|
+
"label": "preferredNamespacePrefix"
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
"iri": "http://purl.org/vocab/vann/preferredNamespaceUri",
|
|
3108
|
+
"compact": "vann:preferredNamespaceUri",
|
|
3109
|
+
"label": "preferredNamespaceUri"
|
|
3110
|
+
}
|
|
3111
|
+
],
|
|
1546
3112
|
"stats": {
|
|
1547
|
-
"classCount":
|
|
1548
|
-
"objectPropertyCount":
|
|
1549
|
-
"datatypePropertyCount":
|
|
3113
|
+
"classCount": 24,
|
|
3114
|
+
"objectPropertyCount": 45,
|
|
3115
|
+
"datatypePropertyCount": 60,
|
|
3116
|
+
"shapeCount": 22,
|
|
3117
|
+
"annotationPropertyCount": 11
|
|
1550
3118
|
}
|
|
1551
3119
|
}
|