@glossarist/concept-browser 0.7.57 → 0.7.59
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/colors.json +36 -0
- package/data/concept-model/README.md +34 -0
- package/data/concept-model/SOURCE.json +6 -0
- package/data/concept-model/glossarist.context.jsonld +261 -0
- package/data/concept-model/glossarist.ttl +1327 -0
- package/data/concept-model/prefixes.ttl +27 -0
- package/data/concept-model/shapes/glossarist.shacl.ttl +815 -0
- package/data/glossarist-vocab.json +130 -0
- package/package.json +3 -2
- package/scripts/validate-shacl.mjs +13 -17
- package/src/components/concept-rdf/rdf-prefixes.ts +60 -20
- package/src/utils/dataset-style.ts +9 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Glossarist Canonical Prefix Declarations
|
|
2
|
+
#
|
|
3
|
+
# Single source of truth for prefix bindings used across the Glossarist
|
|
4
|
+
# ecosystem. Consumed verbatim by every Turtle/JSON-LD/TBX serializer
|
|
5
|
+
# (glossarist-ruby, glossarist-js, and any third-party emitter).
|
|
6
|
+
#
|
|
7
|
+
# Do NOT hand-edit downstream copies. Reference this file from the
|
|
8
|
+
# concept-model repository.
|
|
9
|
+
#
|
|
10
|
+
# Canonical SKOS-XL prefix is `skosxl:` (per W3C convention and
|
|
11
|
+
# glossarist-ruby's existing namespace registration). `xl:` is intentionally
|
|
12
|
+
# absent — do not introduce it.
|
|
13
|
+
|
|
14
|
+
@prefix gloss: <https://www.glossarist.org/ontologies/> .
|
|
15
|
+
@prefix owl: <http://www.w3.org/2002/07/owl#> .
|
|
16
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
|
|
17
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
18
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
|
|
19
|
+
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
|
|
20
|
+
@prefix iso-thes: <http://purl.org/iso25964/skos-thes#> .
|
|
21
|
+
@prefix dcterms: <http://purl.org/dc/terms/> .
|
|
22
|
+
@prefix prov: <http://www.w3.org/ns/prov#> .
|
|
23
|
+
@prefix vann: <http://purl.org/vocab/vann/> .
|
|
24
|
+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
|
|
25
|
+
@prefix sh: <http://www.w3.org/ns/shacl#> .
|
|
26
|
+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
|
27
|
+
@prefix dcat: <http://www.w3.org/ns/dcat#> .
|