Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes issue #38 #39

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions shapes/lv.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@prefix rmlsh: <http://w3id.org/rml/shapes/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<http://w3id.org/rml/lv/shapes> a owl:Ontology ;
owl:imports <http://w3id.org/rml/core/shapes> ;
Expand All @@ -11,8 +12,8 @@

# rml:LogicalView
rmlsh:LogicalViewShape a sh:NodeShape ;
sh:name "LogicalView" ;
sh:description """
rdfs:label "LogicalView" ;
rdfs:comment """
A logical view (rml:LogicalView) is a type of logical source that is derived from another logical source by defining field with data from said logical source.
""" ;
sh:message """
Expand Down Expand Up @@ -77,8 +78,8 @@ rmlsh:LogicalViewShape a sh:NodeShape ;
.

rmlsh:FieldShape a sh:NodeShape ;
sh:name "Field" ;
sh:description """
rdfs:label "Field" ;
rdfs:comment """
A field is an expression map that gives a name to an expression.
""" ;
sh:message """
Expand Down Expand Up @@ -112,8 +113,8 @@ rmlsh:FieldShape a sh:NodeShape ;
] .

rmlsh:LogicalViewJoinShape a sh:NodeShape ;
sh:name "LogicalViewJoin" ;
sh:description """
rdfs:label "LogicalViewJoin" ;
rdfs:comment """
A LogicalViewJoin is an operation that adapts the logical iterations of one logical view (the child logical view) with fields from another logical view (the parent logical view).
""" ;
sh:message """
Expand Down Expand Up @@ -160,8 +161,8 @@ rmlsh:LogicalViewJoinShape a sh:NodeShape ;
] .

rmlsh:StructuralAnnotationShape a sh:NodeShape;
sh:name "StructuralAnnotation" ;
sh:description """
rdfs:label "StructuralAnnotation" ;
rdfs:comment """
Structural annotations provide a mechanism to express relationships between logical views, as well as additional information about fields.
""" ;
sh:message """
Expand All @@ -186,8 +187,8 @@ rmlsh:StructuralAnnotationShape a sh:NodeShape;
] .

rmlsh:InclusionAnnotationShape a sh:NodeShape;
sh:name "InclusionAnnotation" ;
sh:description """
rdfs:label "InclusionAnnotation" ;
rdfs:comment """
The InclusionAnnotaton annotation (rml:InclusionAnnotation) is analogous to the notion of inclusion dependency in databases.
""" ;
sh:message """
Expand Down
Loading