glossarist 0.4.2 → 0.4.3
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/data/concept-model/README.md +44 -0
- package/data/concept-model/shapes/glossarist.shacl.ttl +704 -0
- package/package.json +23 -3
- package/src/concept-collection.js +57 -0
- package/src/index.js +15 -0
- package/src/models/concept.js +6 -0
- package/src/models/dataset-color.js +79 -0
- package/src/models/designation.js +54 -0
- package/src/models/index.d.ts +121 -4
- package/src/models/index.js +13 -0
- package/src/models/register.js +99 -1
- package/src/models/relation-categories.js +151 -0
- package/src/models/relation-colors.js +78 -0
- package/src/rdf/deterministic-id.js +17 -0
- package/src/rdf/document-writer.js +87 -0
- package/src/rdf/gloss-concept.js +43 -0
- package/src/rdf/gloss-designation.js +72 -0
- package/src/rdf/gloss-detailed-definition.js +69 -0
- package/src/rdf/gloss-localized-concept.js +72 -0
- package/src/rdf/gloss-source.js +51 -0
- package/src/rdf/index.d.ts +107 -0
- package/src/rdf/index.js +27 -0
- package/src/rdf/normalize-enum.js +23 -0
- package/src/rdf/predicates.d.ts +443 -0
- package/src/rdf/predicates.js +245 -0
- package/src/rdf/prefixes.js +31 -0
- package/src/rdf/shacl.js +98 -0
- package/src/rdf/terms.js +15 -0
- package/src/transforms/concept-to-gloss.transform.js +75 -0
- package/src/transforms/index.d.ts +26 -0
- package/src/transforms/index.js +1 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
// Type declarations for the public RDF layer.
|
|
2
|
+
//
|
|
3
|
+
// Mirrors the runtime exports of src/rdf/index.js. Quads use the RDF/JS
|
|
4
|
+
// Quad interface from @rdfjs/dataset (compatible with n3's DataFactory
|
|
5
|
+
// output). Dataset is the RDF/JS Dataset.Core interface.
|
|
6
|
+
|
|
7
|
+
import type { Quad, Dataset, Term } from '@rdfjs/dataset';
|
|
8
|
+
import type { Concept } from '../models/index';
|
|
9
|
+
import type { LocalizedConcept } from '../models/index';
|
|
10
|
+
import type { Designation } from '../models/index';
|
|
11
|
+
import type { DetailedDefinition } from '../models/index';
|
|
12
|
+
import type { ConceptSource } from '../models/index';
|
|
13
|
+
|
|
14
|
+
export { PRED, PREFIXES } from './predicates';
|
|
15
|
+
export type PredicateMap = typeof PRED;
|
|
16
|
+
export type PrefixMap = typeof PREFIXES;
|
|
17
|
+
|
|
18
|
+
export type { Quad, Dataset, Term };
|
|
19
|
+
|
|
20
|
+
export const SKOSXL: {
|
|
21
|
+
prefLabel: string;
|
|
22
|
+
altLabel: string;
|
|
23
|
+
hiddenLabel: string;
|
|
24
|
+
literalForm: string;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export const WELL_KNOWN: {
|
|
28
|
+
rdfType: string;
|
|
29
|
+
rdfValue: string;
|
|
30
|
+
skosConcept: string;
|
|
31
|
+
skosxlLabel: string;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
export declare function deterministicId(...parts: Array<string | number | null | undefined>): string;
|
|
35
|
+
export declare function deterministicBnode(subject: string, role: string, index: number): string;
|
|
36
|
+
|
|
37
|
+
export interface ConceptUriOptions {
|
|
38
|
+
registerId: string;
|
|
39
|
+
uriBase?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export declare function conceptUri(concept: Concept | { id?: string; termid?: string }, options: ConceptUriOptions): string;
|
|
43
|
+
export declare function conceptToQuads(concept: Concept, options: ConceptUriOptions): Generator<Quad, void, unknown>;
|
|
44
|
+
|
|
45
|
+
export interface LocalizedConceptEmitOptions {
|
|
46
|
+
parentUri: string;
|
|
47
|
+
language: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export declare function localizedConceptUri(parentUri: string, language: string): string;
|
|
51
|
+
export declare function localizedConceptToQuads(localizedConcept: LocalizedConcept, options: LocalizedConceptEmitOptions): Generator<Quad, void, unknown>;
|
|
52
|
+
|
|
53
|
+
export interface DesignationEmitOptions {
|
|
54
|
+
subjectUri: string;
|
|
55
|
+
language: string;
|
|
56
|
+
index: number;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export declare function designationToQuads(designation: Designation, options: DesignationEmitOptions): Generator<Quad, void, unknown>;
|
|
60
|
+
export declare function skosLabelPredicate(designation: Designation): string;
|
|
61
|
+
export declare function skosxlLabelPredicate(designation: Designation): string;
|
|
62
|
+
|
|
63
|
+
export interface DetailedDefinitionEmitOptions {
|
|
64
|
+
subjectUri: string;
|
|
65
|
+
language?: string;
|
|
66
|
+
index: number;
|
|
67
|
+
role: 'hasDefinition' | 'hasNote' | 'hasExample' | 'hasAnnotation' | 'hasScopedExample';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export declare function detailedDefinitionToQuads(definition: DetailedDefinition, options: DetailedDefinitionEmitOptions): Generator<Quad, void, unknown>;
|
|
71
|
+
|
|
72
|
+
export interface ConceptSourceEmitOptions {
|
|
73
|
+
subjectUri: string;
|
|
74
|
+
index: number;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export declare function conceptSourceToQuads(source: ConceptSource, options: ConceptSourceEmitOptions): Generator<Quad, void, unknown>;
|
|
78
|
+
|
|
79
|
+
export declare function collectQuads(quadsIterable: Iterable<Quad>): Quad[];
|
|
80
|
+
|
|
81
|
+
export interface WriteTurtleOptions {
|
|
82
|
+
prefixes?: Record<string, string>;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export declare function writeTurtle(quads: Iterable<Quad>, options?: WriteTurtleOptions): Promise<string>;
|
|
86
|
+
export declare function writeNTriples(quads: Iterable<Quad>): Promise<string>;
|
|
87
|
+
|
|
88
|
+
export interface WriteJsonldOptions {
|
|
89
|
+
context?: Record<string, string>;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export declare function writeJsonld(quads: Iterable<Quad>, options?: WriteJsonldOptions): Promise<string>;
|
|
93
|
+
export declare function sortQuads(quads: Iterable<Quad>): Quad[];
|
|
94
|
+
|
|
95
|
+
export interface ValidationReport {
|
|
96
|
+
conforms: boolean;
|
|
97
|
+
results: ReadonlyArray<{
|
|
98
|
+
focusNode?: Term;
|
|
99
|
+
shape?: Term;
|
|
100
|
+
path?: Term;
|
|
101
|
+
message: Term[];
|
|
102
|
+
}>;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export declare function loadShapes(): Promise<Dataset>;
|
|
106
|
+
export declare function validateShacl(dataDataset: Dataset, options?: { shapes?: Dataset }): Promise<ValidationReport>;
|
|
107
|
+
export declare function quadsToDataset(quads: Iterable<Quad>): Dataset;
|
package/src/rdf/index.js
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Public RDF layer. Mirrors lib/glossarist/rdf/ in glossarist-ruby.
|
|
2
|
+
export { PRED, PREFIXES, SKOSXL, WELL_KNOWN } from './prefixes.js';
|
|
3
|
+
export { deterministicId, deterministicBnode } from './deterministic-id.js';
|
|
4
|
+
export { namedNode, blankNode, literal, defaultGraph, quad } from './terms.js';
|
|
5
|
+
export {
|
|
6
|
+
conceptUri,
|
|
7
|
+
conceptToQuads,
|
|
8
|
+
} from './gloss-concept.js';
|
|
9
|
+
export {
|
|
10
|
+
localizedConceptUri,
|
|
11
|
+
localizedConceptToQuads,
|
|
12
|
+
} from './gloss-localized-concept.js';
|
|
13
|
+
export {
|
|
14
|
+
designationToQuads,
|
|
15
|
+
skosLabelPredicate,
|
|
16
|
+
skosxlLabelPredicate,
|
|
17
|
+
} from './gloss-designation.js';
|
|
18
|
+
export { detailedDefinitionToQuads } from './gloss-detailed-definition.js';
|
|
19
|
+
export { conceptSourceToQuads } from './gloss-source.js';
|
|
20
|
+
export {
|
|
21
|
+
collectQuads,
|
|
22
|
+
writeTurtle,
|
|
23
|
+
writeNTriples,
|
|
24
|
+
writeJsonld,
|
|
25
|
+
sortQuads,
|
|
26
|
+
} from './document-writer.js';
|
|
27
|
+
export { validateShacl, loadShapes, quadsToDataset } from './shacl.js';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// Helpers for normalizing enumeration values that get interpolated into
|
|
2
|
+
// URIs. Source data may contain compound forms ("preferred/admitted") or
|
|
3
|
+
// path-like values that must be reduced to a single local name before
|
|
4
|
+
// being embedded in a URI, otherwise the URI is malformed.
|
|
5
|
+
|
|
6
|
+
// Returns the last path segment of an enumeration value.
|
|
7
|
+
// Examples:
|
|
8
|
+
// 'preferred' → 'preferred'
|
|
9
|
+
// 'preferred/admitted' → 'admitted'
|
|
10
|
+
// 'http://x/ns#preferred' → 'preferred'
|
|
11
|
+
// '' / null / undefined → '' (caller decides whether to skip emission)
|
|
12
|
+
export function normalizeEnum(value) {
|
|
13
|
+
if (value == null) return '';
|
|
14
|
+
const s = String(value).trim();
|
|
15
|
+
if (!s) return '';
|
|
16
|
+
const parts = s.split(/[/#]/);
|
|
17
|
+
return parts[parts.length - 1];
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// True when normalizeEnum would produce a non-empty token.
|
|
21
|
+
export function hasEnumValue(value) {
|
|
22
|
+
return normalizeEnum(value).length > 0;
|
|
23
|
+
}
|
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
// AUTO-GENERATED by scripts/gen-predicates.mjs. Do not edit.
|
|
2
|
+
// Source: data/concept-model/glossarist.context.jsonld
|
|
3
|
+
// Regenerate via `npm run gen:predicates`.
|
|
4
|
+
export declare const PRED = {
|
|
5
|
+
"gloss": {
|
|
6
|
+
"Concept": "https://www.glossarist.org/ontologies/Concept",
|
|
7
|
+
"ConceptCollection": "https://www.glossarist.org/ontologies/ConceptCollection",
|
|
8
|
+
"LocalizedConcept": "https://www.glossarist.org/ontologies/LocalizedConcept",
|
|
9
|
+
"Designation": "https://www.glossarist.org/ontologies/Designation",
|
|
10
|
+
"Expression": "https://www.glossarist.org/ontologies/Expression",
|
|
11
|
+
"Abbreviation": "https://www.glossarist.org/ontologies/Abbreviation",
|
|
12
|
+
"Symbol": "https://www.glossarist.org/ontologies/Symbol",
|
|
13
|
+
"LetterSymbol": "https://www.glossarist.org/ontologies/LetterSymbol",
|
|
14
|
+
"GraphicalSymbol": "https://www.glossarist.org/ontologies/GraphicalSymbol",
|
|
15
|
+
"Prefix": "https://www.glossarist.org/ontologies/Prefix",
|
|
16
|
+
"Suffix": "https://www.glossarist.org/ontologies/Suffix",
|
|
17
|
+
"Pronunciation": "https://www.glossarist.org/ontologies/Pronunciation",
|
|
18
|
+
"GrammarInfo": "https://www.glossarist.org/ontologies/GrammarInfo",
|
|
19
|
+
"DetailedDefinition": "https://www.glossarist.org/ontologies/DetailedDefinition",
|
|
20
|
+
"ConceptSource": "https://www.glossarist.org/ontologies/ConceptSource",
|
|
21
|
+
"Citation": "https://www.glossarist.org/ontologies/Citation",
|
|
22
|
+
"CitationRef": "https://www.glossarist.org/ontologies/CitationRef",
|
|
23
|
+
"ConceptRef": "https://www.glossarist.org/ontologies/ConceptRef",
|
|
24
|
+
"Reference": "https://www.glossarist.org/ontologies/Reference",
|
|
25
|
+
"RelatedConcept": "https://www.glossarist.org/ontologies/RelatedConcept",
|
|
26
|
+
"DesignationRelationship": "https://www.glossarist.org/ontologies/DesignationRelationship",
|
|
27
|
+
"ConceptDate": "https://www.glossarist.org/ontologies/ConceptDate",
|
|
28
|
+
"NonVerbalRepresentation": "https://www.glossarist.org/ontologies/NonVerbalRepresentation",
|
|
29
|
+
"CustomLocality": "https://www.glossarist.org/ontologies/CustomLocality",
|
|
30
|
+
"Locality": "https://www.glossarist.org/ontologies/Locality",
|
|
31
|
+
"DatasetRegister": "https://www.glossarist.org/ontologies/DatasetRegister",
|
|
32
|
+
"Section": "https://www.glossarist.org/ontologies/Section",
|
|
33
|
+
"identifier": "https://www.glossarist.org/ontologies/identifier",
|
|
34
|
+
"uri": "https://www.glossarist.org/ontologies/uri",
|
|
35
|
+
"hasLocalization": "https://www.glossarist.org/ontologies/hasLocalization",
|
|
36
|
+
"isLocalizationOf": "https://www.glossarist.org/ontologies/isLocalizationOf",
|
|
37
|
+
"hasStatus": "https://www.glossarist.org/ontologies/hasStatus",
|
|
38
|
+
"hasDomain": "https://www.glossarist.org/ontologies/hasDomain",
|
|
39
|
+
"hasRelatedConcept": "https://www.glossarist.org/ontologies/hasRelatedConcept",
|
|
40
|
+
"hasDate": "https://www.glossarist.org/ontologies/hasDate",
|
|
41
|
+
"hasSource": "https://www.glossarist.org/ontologies/hasSource",
|
|
42
|
+
"hasEntryStatus": "https://www.glossarist.org/ontologies/hasEntryStatus",
|
|
43
|
+
"hasDesignation": "https://www.glossarist.org/ontologies/hasDesignation",
|
|
44
|
+
"hasDefinition": "https://www.glossarist.org/ontologies/hasDefinition",
|
|
45
|
+
"hasNote": "https://www.glossarist.org/ontologies/hasNote",
|
|
46
|
+
"hasExample": "https://www.glossarist.org/ontologies/hasExample",
|
|
47
|
+
"hasScopedExample": "https://www.glossarist.org/ontologies/hasScopedExample",
|
|
48
|
+
"hasAnnotation": "https://www.glossarist.org/ontologies/hasAnnotation",
|
|
49
|
+
"hasNonVerbalRep": "https://www.glossarist.org/ontologies/hasNonVerbalRep",
|
|
50
|
+
"domain": "https://www.glossarist.org/ontologies/domain",
|
|
51
|
+
"release": "https://www.glossarist.org/ontologies/release",
|
|
52
|
+
"lineageSimilarity": "https://www.glossarist.org/ontologies/lineageSimilarity",
|
|
53
|
+
"reviewType": "https://www.glossarist.org/ontologies/reviewType",
|
|
54
|
+
"normativeStatus": "https://www.glossarist.org/ontologies/normativeStatus",
|
|
55
|
+
"hasPronunciation": "https://www.glossarist.org/ontologies/hasPronunciation",
|
|
56
|
+
"hasTermType": "https://www.glossarist.org/ontologies/hasTermType",
|
|
57
|
+
"classification": "https://www.glossarist.org/ontologies/classification",
|
|
58
|
+
"hasReference": "https://www.glossarist.org/ontologies/hasReference",
|
|
59
|
+
"hasGrammarInfo": "https://www.glossarist.org/ontologies/hasGrammarInfo",
|
|
60
|
+
"geographicalArea": "https://www.glossarist.org/ontologies/geographicalArea",
|
|
61
|
+
"isInternational": "https://www.glossarist.org/ontologies/isInternational",
|
|
62
|
+
"isAbsent": "https://www.glossarist.org/ontologies/isAbsent",
|
|
63
|
+
"register": "https://www.glossarist.org/ontologies/register",
|
|
64
|
+
"prefix": "https://www.glossarist.org/ontologies/prefix",
|
|
65
|
+
"usageInfo": "https://www.glossarist.org/ontologies/usageInfo",
|
|
66
|
+
"fieldOfApplication": "https://www.glossarist.org/ontologies/fieldOfApplication",
|
|
67
|
+
"isAcronym": "https://www.glossarist.org/ontologies/isAcronym",
|
|
68
|
+
"isInitialism": "https://www.glossarist.org/ontologies/isInitialism",
|
|
69
|
+
"isTruncation": "https://www.glossarist.org/ontologies/isTruncation",
|
|
70
|
+
"text": "https://www.glossarist.org/ontologies/text",
|
|
71
|
+
"image": "https://www.glossarist.org/ontologies/image",
|
|
72
|
+
"pronunciationContent": "https://www.glossarist.org/ontologies/pronunciationContent",
|
|
73
|
+
"pronunciationLanguage": "https://www.glossarist.org/ontologies/pronunciationLanguage",
|
|
74
|
+
"pronunciationScript": "https://www.glossarist.org/ontologies/pronunciationScript",
|
|
75
|
+
"pronunciationCountry": "https://www.glossarist.org/ontologies/pronunciationCountry",
|
|
76
|
+
"pronunciationSystem": "https://www.glossarist.org/ontologies/pronunciationSystem",
|
|
77
|
+
"relationshipType": "https://www.glossarist.org/ontologies/relationshipType",
|
|
78
|
+
"relationshipContent": "https://www.glossarist.org/ontologies/relationshipContent",
|
|
79
|
+
"relationshipRef": "https://www.glossarist.org/ontologies/relationshipRef",
|
|
80
|
+
"refType": "https://www.glossarist.org/ontologies/refType",
|
|
81
|
+
"urn": "https://www.glossarist.org/ontologies/urn",
|
|
82
|
+
"term": "https://www.glossarist.org/ontologies/term",
|
|
83
|
+
"refId": "https://www.glossarist.org/ontologies/refId",
|
|
84
|
+
"refVersion": "https://www.glossarist.org/ontologies/refVersion",
|
|
85
|
+
"refLink": "https://www.glossarist.org/ontologies/refLink",
|
|
86
|
+
"sourceType": "https://www.glossarist.org/ontologies/sourceType",
|
|
87
|
+
"sourceStatus": "https://www.glossarist.org/ontologies/sourceStatus",
|
|
88
|
+
"sourceId": "https://www.glossarist.org/ontologies/sourceId",
|
|
89
|
+
"sourceOrigin": "https://www.glossarist.org/ontologies/sourceOrigin",
|
|
90
|
+
"modification": "https://www.glossarist.org/ontologies/modification",
|
|
91
|
+
"hasCitationRef": "https://www.glossarist.org/ontologies/hasCitationRef",
|
|
92
|
+
"hasCitationLocality": "https://www.glossarist.org/ontologies/hasCitationLocality",
|
|
93
|
+
"citationOriginal": "https://www.glossarist.org/ontologies/citationOriginal",
|
|
94
|
+
"hasCustomLocality": "https://www.glossarist.org/ontologies/hasCustomLocality",
|
|
95
|
+
"citationRefSource": "https://www.glossarist.org/ontologies/citationRefSource",
|
|
96
|
+
"citationRefId": "https://www.glossarist.org/ontologies/citationRefId",
|
|
97
|
+
"citationRefVersion": "https://www.glossarist.org/ontologies/citationRefVersion",
|
|
98
|
+
"conceptRefSource": "https://www.glossarist.org/ontologies/conceptRefSource",
|
|
99
|
+
"conceptRefId": "https://www.glossarist.org/ontologies/conceptRefId",
|
|
100
|
+
"conceptRefText": "https://www.glossarist.org/ontologies/conceptRefText",
|
|
101
|
+
"customLocalityName": "https://www.glossarist.org/ontologies/customLocalityName",
|
|
102
|
+
"customLocalityValue": "https://www.glossarist.org/ontologies/customLocalityValue",
|
|
103
|
+
"citationLink": "https://www.glossarist.org/ontologies/citationLink",
|
|
104
|
+
"hasLocality": "https://www.glossarist.org/ontologies/hasLocality",
|
|
105
|
+
"dateValue": "https://www.glossarist.org/ontologies/dateValue",
|
|
106
|
+
"dateType": "https://www.glossarist.org/ontologies/dateType",
|
|
107
|
+
"eventDescription": "https://www.glossarist.org/ontologies/eventDescription",
|
|
108
|
+
"representationType": "https://www.glossarist.org/ontologies/representationType",
|
|
109
|
+
"representationRef": "https://www.glossarist.org/ontologies/representationRef",
|
|
110
|
+
"representationText": "https://www.glossarist.org/ontologies/representationText",
|
|
111
|
+
"localityType": "https://www.glossarist.org/ontologies/localityType",
|
|
112
|
+
"referenceFrom": "https://www.glossarist.org/ontologies/referenceFrom",
|
|
113
|
+
"referenceTo": "https://www.glossarist.org/ontologies/referenceTo",
|
|
114
|
+
"gender": "https://www.glossarist.org/ontologies/gender",
|
|
115
|
+
"number": "https://www.glossarist.org/ontologies/number",
|
|
116
|
+
"isNoun": "https://www.glossarist.org/ontologies/isNoun",
|
|
117
|
+
"isVerb": "https://www.glossarist.org/ontologies/isVerb",
|
|
118
|
+
"isAdjective": "https://www.glossarist.org/ontologies/isAdjective",
|
|
119
|
+
"isAdverb": "https://www.glossarist.org/ontologies/isAdverb",
|
|
120
|
+
"isPreposition": "https://www.glossarist.org/ontologies/isPreposition",
|
|
121
|
+
"isParticiple": "https://www.glossarist.org/ontologies/isParticiple",
|
|
122
|
+
"partOfSpeech": "https://www.glossarist.org/ontologies/partOfSpeech",
|
|
123
|
+
"script": "https://www.glossarist.org/ontologies/script",
|
|
124
|
+
"conversionSystem": "https://www.glossarist.org/ontologies/conversionSystem",
|
|
125
|
+
"deprecates": "https://www.glossarist.org/ontologies/deprecates",
|
|
126
|
+
"deprecatedBy": "https://www.glossarist.org/ontologies/deprecatedBy",
|
|
127
|
+
"supersedes": "https://www.glossarist.org/ontologies/supersedes",
|
|
128
|
+
"supersededBy": "https://www.glossarist.org/ontologies/supersededBy",
|
|
129
|
+
"compares": "https://www.glossarist.org/ontologies/compares",
|
|
130
|
+
"contrasts": "https://www.glossarist.org/ontologies/contrasts",
|
|
131
|
+
"sequentiallyRelated": "https://www.glossarist.org/ontologies/sequentiallyRelated",
|
|
132
|
+
"spatiallyRelated": "https://www.glossarist.org/ontologies/spatiallyRelated",
|
|
133
|
+
"temporallyRelated": "https://www.glossarist.org/ontologies/temporallyRelated",
|
|
134
|
+
"hasHomograph": "https://www.glossarist.org/ontologies/hasHomograph",
|
|
135
|
+
"hasFalseFriend": "https://www.glossarist.org/ontologies/hasFalseFriend",
|
|
136
|
+
"abbreviatedFormFor": "https://www.glossarist.org/ontologies/abbreviatedFormFor",
|
|
137
|
+
"shortFormFor": "https://www.glossarist.org/ontologies/shortFormFor",
|
|
138
|
+
"hasDesignationRelationship": "https://www.glossarist.org/ontologies/hasDesignationRelationship",
|
|
139
|
+
"designationRelationshipType": "https://www.glossarist.org/ontologies/designationRelationshipType",
|
|
140
|
+
"designationRelationshipContent": "https://www.glossarist.org/ontologies/designationRelationshipContent",
|
|
141
|
+
"relationshipTarget": "https://www.glossarist.org/ontologies/relationshipTarget",
|
|
142
|
+
"language": "https://www.glossarist.org/ontologies/language",
|
|
143
|
+
"datasetId": "https://www.glossarist.org/ontologies/datasetId",
|
|
144
|
+
"datasetRef": "https://www.glossarist.org/ontologies/datasetRef",
|
|
145
|
+
"datasetYear": "https://www.glossarist.org/ontologies/datasetYear",
|
|
146
|
+
"datasetUrn": "https://www.glossarist.org/ontologies/datasetUrn",
|
|
147
|
+
"datasetUrnAlias": "https://www.glossarist.org/ontologies/datasetUrnAlias",
|
|
148
|
+
"datasetRefAlias": "https://www.glossarist.org/ontologies/datasetRefAlias",
|
|
149
|
+
"datasetStatus": "https://www.glossarist.org/ontologies/datasetStatus",
|
|
150
|
+
"supersedesDataset": "https://www.glossarist.org/ontologies/supersedesDataset",
|
|
151
|
+
"owner": "https://www.glossarist.org/ontologies/owner",
|
|
152
|
+
"sourceRepo": "https://www.glossarist.org/ontologies/sourceRepo",
|
|
153
|
+
"datasetLanguage": "https://www.glossarist.org/ontologies/datasetLanguage",
|
|
154
|
+
"languageOrder": "https://www.glossarist.org/ontologies/languageOrder",
|
|
155
|
+
"hasSection": "https://www.glossarist.org/ontologies/hasSection",
|
|
156
|
+
"hasDefaultOrdering": "https://www.glossarist.org/ontologies/hasDefaultOrdering",
|
|
157
|
+
"datasetDescription": "https://www.glossarist.org/ontologies/datasetDescription",
|
|
158
|
+
"aboutPath": "https://www.glossarist.org/ontologies/aboutPath",
|
|
159
|
+
"logo": "https://www.glossarist.org/ontologies/logo",
|
|
160
|
+
"sectionId": "https://www.glossarist.org/ontologies/sectionId",
|
|
161
|
+
"sectionName": "https://www.glossarist.org/ontologies/sectionName",
|
|
162
|
+
"hasChildSection": "https://www.glossarist.org/ontologies/hasChildSection",
|
|
163
|
+
"hasParentSection": "https://www.glossarist.org/ontologies/hasParentSection",
|
|
164
|
+
"sectionOrdering": "https://www.glossarist.org/ontologies/sectionOrdering",
|
|
165
|
+
"$ns": "https://www.glossarist.org/ontologies/",
|
|
166
|
+
} as const,
|
|
167
|
+
|
|
168
|
+
"skos": {
|
|
169
|
+
"prefLabel": "http://www.w3.org/2004/02/skos/core#prefLabel",
|
|
170
|
+
"altLabel": "http://www.w3.org/2004/02/skos/core#altLabel",
|
|
171
|
+
"hiddenLabel": "http://www.w3.org/2004/02/skos/core#hiddenLabel",
|
|
172
|
+
"definition": "http://www.w3.org/2004/02/skos/core#definition",
|
|
173
|
+
"scopeNote": "http://www.w3.org/2004/02/skos/core#scopeNote",
|
|
174
|
+
"note": "http://www.w3.org/2004/02/skos/core#note",
|
|
175
|
+
"example": "http://www.w3.org/2004/02/skos/core#example",
|
|
176
|
+
"notation": "http://www.w3.org/2004/02/skos/core#notation",
|
|
177
|
+
"inScheme": "http://www.w3.org/2004/02/skos/core#inScheme",
|
|
178
|
+
"hasTopConcept": "http://www.w3.org/2004/02/skos/core#hasTopConcept",
|
|
179
|
+
"broader": "http://www.w3.org/2004/02/skos/core#broader",
|
|
180
|
+
"narrower": "http://www.w3.org/2004/02/skos/core#narrower",
|
|
181
|
+
"related": "http://www.w3.org/2004/02/skos/core#related",
|
|
182
|
+
"exactMatch": "http://www.w3.org/2004/02/skos/core#exactMatch",
|
|
183
|
+
"closeMatch": "http://www.w3.org/2004/02/skos/core#closeMatch",
|
|
184
|
+
"broadMatch": "http://www.w3.org/2004/02/skos/core#broadMatch",
|
|
185
|
+
"narrowMatch": "http://www.w3.org/2004/02/skos/core#narrowMatch",
|
|
186
|
+
"relatedMatch": "http://www.w3.org/2004/02/skos/core#relatedMatch",
|
|
187
|
+
"$ns": "http://www.w3.org/2004/02/skos/core#",
|
|
188
|
+
} as const,
|
|
189
|
+
|
|
190
|
+
"skosxl": {
|
|
191
|
+
"literalForm": "http://www.w3.org/2008/05/skos-xl#literalForm",
|
|
192
|
+
"labelRelation": "http://www.w3.org/2008/05/skos-xl#labelRelation",
|
|
193
|
+
"$ns": "http://www.w3.org/2008/05/skos-xl#",
|
|
194
|
+
} as const,
|
|
195
|
+
|
|
196
|
+
"iso-thes": {
|
|
197
|
+
"broaderGeneric": "http://purl.org/iso25964/skos-thes#broaderGeneric",
|
|
198
|
+
"narrowerGeneric": "http://purl.org/iso25964/skos-thes#narrowerGeneric",
|
|
199
|
+
"broaderPartitive": "http://purl.org/iso25964/skos-thes#broaderPartitive",
|
|
200
|
+
"narrowerPartitive": "http://purl.org/iso25964/skos-thes#narrowerPartitive",
|
|
201
|
+
"broaderInstantial": "http://purl.org/iso25964/skos-thes#broaderInstantial",
|
|
202
|
+
"narrowerInstantial": "http://purl.org/iso25964/skos-thes#narrowerInstantial",
|
|
203
|
+
"$ns": "http://purl.org/iso25964/skos-thes#",
|
|
204
|
+
} as const,
|
|
205
|
+
|
|
206
|
+
"dcterms": {
|
|
207
|
+
"bibliographicCitation": "http://purl.org/dc/terms/bibliographicCitation",
|
|
208
|
+
"$ns": "http://purl.org/dc/terms/",
|
|
209
|
+
} as const,
|
|
210
|
+
|
|
211
|
+
"prov": {
|
|
212
|
+
"wasDerivedFrom": "http://www.w3.org/ns/prov#wasDerivedFrom",
|
|
213
|
+
"hadDerivation": "http://www.w3.org/ns/prov#hadDerivation",
|
|
214
|
+
"qualifiedDerivation": "http://www.w3.org/ns/prov#qualifiedDerivation",
|
|
215
|
+
"$ns": "http://www.w3.org/ns/prov#",
|
|
216
|
+
} as const,
|
|
217
|
+
|
|
218
|
+
"rdfs": {
|
|
219
|
+
"label": "http://www.w3.org/2000/01/rdf-schema#label",
|
|
220
|
+
"comment": "http://www.w3.org/2000/01/rdf-schema#comment",
|
|
221
|
+
"seeAlso": "http://www.w3.org/2000/01/rdf-schema#seeAlso",
|
|
222
|
+
"subClassOf": "http://www.w3.org/2000/01/rdf-schema#subClassOf",
|
|
223
|
+
"$ns": "http://www.w3.org/2000/01/rdf-schema#",
|
|
224
|
+
} as const,
|
|
225
|
+
|
|
226
|
+
"rdf": {
|
|
227
|
+
"value": "http://www.w3.org/1999/02/22-rdf-syntax-ns#value",
|
|
228
|
+
"$ns": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
229
|
+
} as const,
|
|
230
|
+
|
|
231
|
+
} as const;
|
|
232
|
+
|
|
233
|
+
export declare const PREFIXES: Record<string, string> = {
|
|
234
|
+
"gloss": "https://www.glossarist.org/ontologies/",
|
|
235
|
+
"skos": "http://www.w3.org/2004/02/skos/core#",
|
|
236
|
+
"skosxl": "http://www.w3.org/2008/05/skos-xl#",
|
|
237
|
+
"iso-thes": "http://purl.org/iso25964/skos-thes#",
|
|
238
|
+
"dcterms": "http://purl.org/dc/terms/",
|
|
239
|
+
"prov": "http://www.w3.org/ns/prov#",
|
|
240
|
+
"owl": "http://www.w3.org/2002/07/owl#",
|
|
241
|
+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
242
|
+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
|
243
|
+
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
|
244
|
+
"vann": "http://purl.org/vocab/vann/",
|
|
245
|
+
};
|
|
246
|
+
|
|
247
|
+
export type Predicate =
|
|
248
|
+
| "https://www.glossarist.org/ontologies/Concept"
|
|
249
|
+
| "https://www.glossarist.org/ontologies/ConceptCollection"
|
|
250
|
+
| "https://www.glossarist.org/ontologies/LocalizedConcept"
|
|
251
|
+
| "https://www.glossarist.org/ontologies/Designation"
|
|
252
|
+
| "https://www.glossarist.org/ontologies/Expression"
|
|
253
|
+
| "https://www.glossarist.org/ontologies/Abbreviation"
|
|
254
|
+
| "https://www.glossarist.org/ontologies/Symbol"
|
|
255
|
+
| "https://www.glossarist.org/ontologies/LetterSymbol"
|
|
256
|
+
| "https://www.glossarist.org/ontologies/GraphicalSymbol"
|
|
257
|
+
| "https://www.glossarist.org/ontologies/Prefix"
|
|
258
|
+
| "https://www.glossarist.org/ontologies/Suffix"
|
|
259
|
+
| "https://www.glossarist.org/ontologies/Pronunciation"
|
|
260
|
+
| "https://www.glossarist.org/ontologies/GrammarInfo"
|
|
261
|
+
| "https://www.glossarist.org/ontologies/DetailedDefinition"
|
|
262
|
+
| "https://www.glossarist.org/ontologies/ConceptSource"
|
|
263
|
+
| "https://www.glossarist.org/ontologies/Citation"
|
|
264
|
+
| "https://www.glossarist.org/ontologies/CitationRef"
|
|
265
|
+
| "https://www.glossarist.org/ontologies/ConceptRef"
|
|
266
|
+
| "https://www.glossarist.org/ontologies/Reference"
|
|
267
|
+
| "https://www.glossarist.org/ontologies/RelatedConcept"
|
|
268
|
+
| "https://www.glossarist.org/ontologies/DesignationRelationship"
|
|
269
|
+
| "https://www.glossarist.org/ontologies/ConceptDate"
|
|
270
|
+
| "https://www.glossarist.org/ontologies/NonVerbalRepresentation"
|
|
271
|
+
| "https://www.glossarist.org/ontologies/CustomLocality"
|
|
272
|
+
| "https://www.glossarist.org/ontologies/Locality"
|
|
273
|
+
| "https://www.glossarist.org/ontologies/DatasetRegister"
|
|
274
|
+
| "https://www.glossarist.org/ontologies/Section"
|
|
275
|
+
| "https://www.glossarist.org/ontologies/identifier"
|
|
276
|
+
| "https://www.glossarist.org/ontologies/uri"
|
|
277
|
+
| "https://www.glossarist.org/ontologies/hasLocalization"
|
|
278
|
+
| "https://www.glossarist.org/ontologies/isLocalizationOf"
|
|
279
|
+
| "https://www.glossarist.org/ontologies/hasStatus"
|
|
280
|
+
| "https://www.glossarist.org/ontologies/hasDomain"
|
|
281
|
+
| "https://www.glossarist.org/ontologies/hasRelatedConcept"
|
|
282
|
+
| "https://www.glossarist.org/ontologies/hasDate"
|
|
283
|
+
| "https://www.glossarist.org/ontologies/hasSource"
|
|
284
|
+
| "https://www.glossarist.org/ontologies/hasEntryStatus"
|
|
285
|
+
| "https://www.glossarist.org/ontologies/hasDesignation"
|
|
286
|
+
| "https://www.glossarist.org/ontologies/hasDefinition"
|
|
287
|
+
| "https://www.glossarist.org/ontologies/hasNote"
|
|
288
|
+
| "https://www.glossarist.org/ontologies/hasExample"
|
|
289
|
+
| "https://www.glossarist.org/ontologies/hasScopedExample"
|
|
290
|
+
| "https://www.glossarist.org/ontologies/hasAnnotation"
|
|
291
|
+
| "https://www.glossarist.org/ontologies/hasNonVerbalRep"
|
|
292
|
+
| "https://www.glossarist.org/ontologies/domain"
|
|
293
|
+
| "https://www.glossarist.org/ontologies/release"
|
|
294
|
+
| "https://www.glossarist.org/ontologies/lineageSimilarity"
|
|
295
|
+
| "https://www.glossarist.org/ontologies/reviewType"
|
|
296
|
+
| "https://www.glossarist.org/ontologies/normativeStatus"
|
|
297
|
+
| "https://www.glossarist.org/ontologies/hasPronunciation"
|
|
298
|
+
| "https://www.glossarist.org/ontologies/hasTermType"
|
|
299
|
+
| "https://www.glossarist.org/ontologies/classification"
|
|
300
|
+
| "https://www.glossarist.org/ontologies/hasReference"
|
|
301
|
+
| "https://www.glossarist.org/ontologies/hasGrammarInfo"
|
|
302
|
+
| "https://www.glossarist.org/ontologies/geographicalArea"
|
|
303
|
+
| "https://www.glossarist.org/ontologies/isInternational"
|
|
304
|
+
| "https://www.glossarist.org/ontologies/isAbsent"
|
|
305
|
+
| "https://www.glossarist.org/ontologies/register"
|
|
306
|
+
| "https://www.glossarist.org/ontologies/prefix"
|
|
307
|
+
| "https://www.glossarist.org/ontologies/usageInfo"
|
|
308
|
+
| "https://www.glossarist.org/ontologies/fieldOfApplication"
|
|
309
|
+
| "https://www.glossarist.org/ontologies/isAcronym"
|
|
310
|
+
| "https://www.glossarist.org/ontologies/isInitialism"
|
|
311
|
+
| "https://www.glossarist.org/ontologies/isTruncation"
|
|
312
|
+
| "https://www.glossarist.org/ontologies/text"
|
|
313
|
+
| "https://www.glossarist.org/ontologies/image"
|
|
314
|
+
| "https://www.glossarist.org/ontologies/pronunciationContent"
|
|
315
|
+
| "https://www.glossarist.org/ontologies/pronunciationLanguage"
|
|
316
|
+
| "https://www.glossarist.org/ontologies/pronunciationScript"
|
|
317
|
+
| "https://www.glossarist.org/ontologies/pronunciationCountry"
|
|
318
|
+
| "https://www.glossarist.org/ontologies/pronunciationSystem"
|
|
319
|
+
| "https://www.glossarist.org/ontologies/relationshipType"
|
|
320
|
+
| "https://www.glossarist.org/ontologies/relationshipContent"
|
|
321
|
+
| "https://www.glossarist.org/ontologies/relationshipRef"
|
|
322
|
+
| "https://www.glossarist.org/ontologies/refType"
|
|
323
|
+
| "https://www.glossarist.org/ontologies/urn"
|
|
324
|
+
| "https://www.glossarist.org/ontologies/term"
|
|
325
|
+
| "https://www.glossarist.org/ontologies/refId"
|
|
326
|
+
| "https://www.glossarist.org/ontologies/refVersion"
|
|
327
|
+
| "https://www.glossarist.org/ontologies/refLink"
|
|
328
|
+
| "https://www.glossarist.org/ontologies/sourceType"
|
|
329
|
+
| "https://www.glossarist.org/ontologies/sourceStatus"
|
|
330
|
+
| "https://www.glossarist.org/ontologies/sourceId"
|
|
331
|
+
| "https://www.glossarist.org/ontologies/sourceOrigin"
|
|
332
|
+
| "https://www.glossarist.org/ontologies/modification"
|
|
333
|
+
| "https://www.glossarist.org/ontologies/hasCitationRef"
|
|
334
|
+
| "https://www.glossarist.org/ontologies/hasCitationLocality"
|
|
335
|
+
| "https://www.glossarist.org/ontologies/citationOriginal"
|
|
336
|
+
| "https://www.glossarist.org/ontologies/hasCustomLocality"
|
|
337
|
+
| "https://www.glossarist.org/ontologies/citationRefSource"
|
|
338
|
+
| "https://www.glossarist.org/ontologies/citationRefId"
|
|
339
|
+
| "https://www.glossarist.org/ontologies/citationRefVersion"
|
|
340
|
+
| "https://www.glossarist.org/ontologies/conceptRefSource"
|
|
341
|
+
| "https://www.glossarist.org/ontologies/conceptRefId"
|
|
342
|
+
| "https://www.glossarist.org/ontologies/conceptRefText"
|
|
343
|
+
| "https://www.glossarist.org/ontologies/customLocalityName"
|
|
344
|
+
| "https://www.glossarist.org/ontologies/customLocalityValue"
|
|
345
|
+
| "https://www.glossarist.org/ontologies/citationLink"
|
|
346
|
+
| "https://www.glossarist.org/ontologies/hasLocality"
|
|
347
|
+
| "https://www.glossarist.org/ontologies/dateValue"
|
|
348
|
+
| "https://www.glossarist.org/ontologies/dateType"
|
|
349
|
+
| "https://www.glossarist.org/ontologies/eventDescription"
|
|
350
|
+
| "https://www.glossarist.org/ontologies/representationType"
|
|
351
|
+
| "https://www.glossarist.org/ontologies/representationRef"
|
|
352
|
+
| "https://www.glossarist.org/ontologies/representationText"
|
|
353
|
+
| "https://www.glossarist.org/ontologies/localityType"
|
|
354
|
+
| "https://www.glossarist.org/ontologies/referenceFrom"
|
|
355
|
+
| "https://www.glossarist.org/ontologies/referenceTo"
|
|
356
|
+
| "https://www.glossarist.org/ontologies/gender"
|
|
357
|
+
| "https://www.glossarist.org/ontologies/number"
|
|
358
|
+
| "https://www.glossarist.org/ontologies/isNoun"
|
|
359
|
+
| "https://www.glossarist.org/ontologies/isVerb"
|
|
360
|
+
| "https://www.glossarist.org/ontologies/isAdjective"
|
|
361
|
+
| "https://www.glossarist.org/ontologies/isAdverb"
|
|
362
|
+
| "https://www.glossarist.org/ontologies/isPreposition"
|
|
363
|
+
| "https://www.glossarist.org/ontologies/isParticiple"
|
|
364
|
+
| "https://www.glossarist.org/ontologies/partOfSpeech"
|
|
365
|
+
| "https://www.glossarist.org/ontologies/script"
|
|
366
|
+
| "https://www.glossarist.org/ontologies/conversionSystem"
|
|
367
|
+
| "https://www.glossarist.org/ontologies/deprecates"
|
|
368
|
+
| "https://www.glossarist.org/ontologies/deprecatedBy"
|
|
369
|
+
| "https://www.glossarist.org/ontologies/supersedes"
|
|
370
|
+
| "https://www.glossarist.org/ontologies/supersededBy"
|
|
371
|
+
| "https://www.glossarist.org/ontologies/compares"
|
|
372
|
+
| "https://www.glossarist.org/ontologies/contrasts"
|
|
373
|
+
| "https://www.glossarist.org/ontologies/sequentiallyRelated"
|
|
374
|
+
| "https://www.glossarist.org/ontologies/spatiallyRelated"
|
|
375
|
+
| "https://www.glossarist.org/ontologies/temporallyRelated"
|
|
376
|
+
| "https://www.glossarist.org/ontologies/hasHomograph"
|
|
377
|
+
| "https://www.glossarist.org/ontologies/hasFalseFriend"
|
|
378
|
+
| "https://www.glossarist.org/ontologies/abbreviatedFormFor"
|
|
379
|
+
| "https://www.glossarist.org/ontologies/shortFormFor"
|
|
380
|
+
| "https://www.glossarist.org/ontologies/hasDesignationRelationship"
|
|
381
|
+
| "https://www.glossarist.org/ontologies/designationRelationshipType"
|
|
382
|
+
| "https://www.glossarist.org/ontologies/designationRelationshipContent"
|
|
383
|
+
| "https://www.glossarist.org/ontologies/relationshipTarget"
|
|
384
|
+
| "http://www.w3.org/2004/02/skos/core#prefLabel"
|
|
385
|
+
| "http://www.w3.org/2004/02/skos/core#altLabel"
|
|
386
|
+
| "http://www.w3.org/2004/02/skos/core#hiddenLabel"
|
|
387
|
+
| "http://www.w3.org/2004/02/skos/core#definition"
|
|
388
|
+
| "http://www.w3.org/2004/02/skos/core#scopeNote"
|
|
389
|
+
| "http://www.w3.org/2004/02/skos/core#note"
|
|
390
|
+
| "http://www.w3.org/2004/02/skos/core#example"
|
|
391
|
+
| "http://www.w3.org/2004/02/skos/core#notation"
|
|
392
|
+
| "http://www.w3.org/2004/02/skos/core#inScheme"
|
|
393
|
+
| "http://www.w3.org/2004/02/skos/core#hasTopConcept"
|
|
394
|
+
| "http://www.w3.org/2004/02/skos/core#broader"
|
|
395
|
+
| "http://www.w3.org/2004/02/skos/core#narrower"
|
|
396
|
+
| "http://www.w3.org/2004/02/skos/core#related"
|
|
397
|
+
| "http://www.w3.org/2004/02/skos/core#exactMatch"
|
|
398
|
+
| "http://www.w3.org/2004/02/skos/core#closeMatch"
|
|
399
|
+
| "http://www.w3.org/2004/02/skos/core#broadMatch"
|
|
400
|
+
| "http://www.w3.org/2004/02/skos/core#narrowMatch"
|
|
401
|
+
| "http://www.w3.org/2004/02/skos/core#relatedMatch"
|
|
402
|
+
| "http://www.w3.org/2008/05/skos-xl#literalForm"
|
|
403
|
+
| "http://www.w3.org/2008/05/skos-xl#labelRelation"
|
|
404
|
+
| "http://purl.org/iso25964/skos-thes#broaderGeneric"
|
|
405
|
+
| "http://purl.org/iso25964/skos-thes#narrowerGeneric"
|
|
406
|
+
| "http://purl.org/iso25964/skos-thes#broaderPartitive"
|
|
407
|
+
| "http://purl.org/iso25964/skos-thes#narrowerPartitive"
|
|
408
|
+
| "http://purl.org/iso25964/skos-thes#broaderInstantial"
|
|
409
|
+
| "http://purl.org/iso25964/skos-thes#narrowerInstantial"
|
|
410
|
+
| "https://www.glossarist.org/ontologies/language"
|
|
411
|
+
| "http://purl.org/dc/terms/bibliographicCitation"
|
|
412
|
+
| "http://www.w3.org/ns/prov#wasDerivedFrom"
|
|
413
|
+
| "http://www.w3.org/ns/prov#hadDerivation"
|
|
414
|
+
| "http://www.w3.org/ns/prov#qualifiedDerivation"
|
|
415
|
+
| "http://www.w3.org/2000/01/rdf-schema#label"
|
|
416
|
+
| "http://www.w3.org/2000/01/rdf-schema#comment"
|
|
417
|
+
| "http://www.w3.org/2000/01/rdf-schema#seeAlso"
|
|
418
|
+
| "http://www.w3.org/2000/01/rdf-schema#subClassOf"
|
|
419
|
+
| "http://www.w3.org/1999/02/22-rdf-syntax-ns#value"
|
|
420
|
+
| "https://www.glossarist.org/ontologies/datasetId"
|
|
421
|
+
| "https://www.glossarist.org/ontologies/datasetRef"
|
|
422
|
+
| "https://www.glossarist.org/ontologies/datasetYear"
|
|
423
|
+
| "https://www.glossarist.org/ontologies/datasetUrn"
|
|
424
|
+
| "https://www.glossarist.org/ontologies/datasetUrnAlias"
|
|
425
|
+
| "https://www.glossarist.org/ontologies/datasetRefAlias"
|
|
426
|
+
| "https://www.glossarist.org/ontologies/datasetStatus"
|
|
427
|
+
| "https://www.glossarist.org/ontologies/supersedesDataset"
|
|
428
|
+
| "https://www.glossarist.org/ontologies/owner"
|
|
429
|
+
| "https://www.glossarist.org/ontologies/sourceRepo"
|
|
430
|
+
| "https://www.glossarist.org/ontologies/datasetLanguage"
|
|
431
|
+
| "https://www.glossarist.org/ontologies/languageOrder"
|
|
432
|
+
| "https://www.glossarist.org/ontologies/hasSection"
|
|
433
|
+
| "https://www.glossarist.org/ontologies/hasDefaultOrdering"
|
|
434
|
+
| "https://www.glossarist.org/ontologies/datasetDescription"
|
|
435
|
+
| "https://www.glossarist.org/ontologies/aboutPath"
|
|
436
|
+
| "https://www.glossarist.org/ontologies/logo"
|
|
437
|
+
| "https://www.glossarist.org/ontologies/sectionId"
|
|
438
|
+
| "https://www.glossarist.org/ontologies/sectionName"
|
|
439
|
+
| "https://www.glossarist.org/ontologies/hasChildSection"
|
|
440
|
+
| "https://www.glossarist.org/ontologies/hasParentSection"
|
|
441
|
+
| "https://www.glossarist.org/ontologies/sectionOrdering"
|
|
442
|
+
;
|
|
443
|
+
|