Skip to content

Commit f99c8c7

Browse files
shapes: replace sh:name and sh:description with RDFS (#140)
Also update copyright years.
1 parent 2bd0ec3 commit f99c8c7

16 files changed

+266
-251
lines changed

shapes/child_map.ttl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
###############################################################################
22
# RML Child Map shape #
3-
# Copyright Dylan Van Assche, IDLab - UGent - imec (2023) #
3+
# Copyright Dylan Van Assche, IDLab - UGent - imec (2023 - 2024) #
44
###############################################################################
55
@prefix sh: <http://www.w3.org/ns/shacl#> .
6+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
67
@prefix : <http://w3id.org/rml/shapes/> .
78
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
89
@prefix rml: <http://www.w3.org/ns/r2rml#> .
@@ -12,8 +13,8 @@
1213
a sh:NodeShape ;
1314
sh:targetClass rml:ChildMap ;
1415
sh:targetObjectsOf rml:childMap ;
15-
sh:name "ChildMap" ;
16-
sh:description """
16+
rdfs:label "ChildMap" ;
17+
rdfs:comment """
1718
Represents a Child Map.
1819
""" ;
1920
sh:message """
@@ -33,8 +34,8 @@
3334
:RMLchildShape
3435
a sh:NodeShape ;
3536
sh:targetObjectsOf rml:child ;
36-
sh:name "child" ;
37-
sh:description """
37+
rdfs:label "child" ;
38+
rdfs:comment """
3839
A Literal reference to use as reference to the child data source.
3940
""" ;
4041
sh:message """

0 commit comments

Comments
 (0)