Skip to content

Commit

Permalink
Merge pull request #48 from anaigmo/main
Browse files Browse the repository at this point in the history
`rml:Strategy` and `rml:strategy` added back to RML-CC module
  • Loading branch information
chrdebru authored Jul 15, 2024
2 parents 52cd51f + 330cdc9 commit 4a3be2f
Show file tree
Hide file tree
Showing 10 changed files with 406 additions and 275 deletions.
2 changes: 1 addition & 1 deletion ontology/documentation/index-en.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" href="resources/primer.css" media="screen" /> <link rel="stylesheet" href="resources/rec.css" media="screen" /> <link rel="stylesheet" href="resources/extra.css" media="screen" /> <link rel="stylesheet" href="resources/owl.css" media="screen" /> <title>RML-CC</title>


<!-- SCHEMA.ORG METADATA -->
<!-- SCHEMA.ORG METADATA -->
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","url":"http://w3id.org/rml/cc/","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://w3id.org/rml/cc/","name":"RML-CC: Collections and Containers", "headline":"RML module to generate RDF collections and containers", "datePublished":"Wed Apr 19 19:44:53 UTC 2023", "contributor":[{"@type":"Person","name":"Ana Iglesias Molina"},{"@type":"Person","name":"Christophe Debruyne"},{"@type":"Person","name":"Franck Michel"}]}</script>

<script src="resources/jquery.js"></script>
Expand Down
31 changes: 30 additions & 1 deletion ontology/documentation/ontology.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,17 @@
} ]
}, {
"@id" : "http://w3id.org/rml/Strategy",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "Denotes a strategy to perform a action (e.g. gather for collections and containers, joins)."
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "http://w3id.org/rml/cc/"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@value" : "Strategy"
} ]
}, {
"@id" : "http://w3id.org/rml/TermMap",
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ]
Expand Down Expand Up @@ -240,6 +250,25 @@
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "_:genid1"
} ]
}, {
"@id" : "http://w3id.org/rml/strategy",
"@type" : [ "http://www.w3.org/2002/07/owl#ObjectProperty" ],
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
"@language" : "en",
"@value" : "A Strategy element to indicate how to perform an action (e.g. gather for collections and containers, join)."
} ],
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
"@id" : "http://w3id.org/rml/GatherMap"
} ],
"http://www.w3.org/2000/01/rdf-schema#isDefinedBy" : [ {
"@id" : "http://w3id.org/rml/cc/"
} ],
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
"@value" : "strategy"
} ],
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
"@id" : "http://w3id.org/rml/Strategy"
} ]
}, {
"@id" : "http://www.linkedmodel.org/schema/vaem#acronym",
"@type" : [ "http://www.w3.org/2002/07/owl#AnnotationProperty" ]
Expand Down
11 changes: 11 additions & 0 deletions ontology/documentation/ontology.nt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,14 @@ _:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/20
<http://w3id.org/rml/gatherAs> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://w3id.org/rml/cc/> .
<http://w3id.org/rml/gatherAs> <http://www.w3.org/2000/01/rdf-schema#label> "gather as" .
#
# http://w3id.org/rml/strategy
<http://w3id.org/rml/strategy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
<http://w3id.org/rml/strategy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://w3id.org/rml/GatherMap> .
<http://w3id.org/rml/strategy> <http://www.w3.org/2000/01/rdf-schema#range> <http://w3id.org/rml/Strategy> .
<http://w3id.org/rml/strategy> <http://www.w3.org/2000/01/rdf-schema#comment> "A Strategy element to indicate how to perform an action (e.g. gather for collections and containers, join)."@en .
<http://w3id.org/rml/strategy> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://w3id.org/rml/cc/> .
<http://w3id.org/rml/strategy> <http://www.w3.org/2000/01/rdf-schema#label> "strategy" .
#
#
#
# #################################################################
Expand Down Expand Up @@ -145,6 +153,9 @@ _:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/20
#
# http://w3id.org/rml/Strategy
<http://w3id.org/rml/Strategy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://w3id.org/rml/Strategy> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a strategy to perform a action (e.g. gather for collections and containers, joins)."@en .
<http://w3id.org/rml/Strategy> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://w3id.org/rml/cc/> .
<http://w3id.org/rml/Strategy> <http://www.w3.org/2000/01/rdf-schema#label> "Strategy" .
#
# http://w3id.org/rml/TermMap
#
Expand Down
97 changes: 58 additions & 39 deletions ontology/documentation/ontology.rdf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<rdf:RDF xmlns="http://w3id.org/rml/"
xml:base="http://w3id.org/rml/"
<rdf:RDF xmlns="http://w3id.org/rml/cc/"
xml:base="http://w3id.org/rml/cc/"
xmlns:ns="http://creativecommons.org/ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
Expand Down Expand Up @@ -28,10 +28,10 @@
<vann:preferredNamespaceUri>http://w3id.org/rml/</vann:preferredNamespaceUri>
<owl:versionInfo>0.1.0</owl:versionInfo>
</owl:Ontology>




<!--
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
Expand All @@ -40,115 +40,115 @@
-->





<!-- http://creativecommons.org/ns#license -->


<owl:AnnotationProperty rdf:about="http://creativecommons.org/ns#license"/>



<!-- http://purl.org/dc/terms/contributor -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>



<!-- http://purl.org/dc/terms/created -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>



<!-- http://purl.org/dc/terms/creator -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>



<!-- http://purl.org/dc/terms/description -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>



<!-- http://purl.org/dc/terms/issued -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>



<!-- http://purl.org/dc/terms/license -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>



<!-- http://purl.org/dc/terms/modified -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>



<!-- http://purl.org/dc/terms/publisher -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/publisher"/>



<!-- http://purl.org/dc/terms/title -->


<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>



<!-- http://purl.org/ontology/bibo/status -->


<owl:AnnotationProperty rdf:about="http://purl.org/ontology/bibo/status"/>



<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->


<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>



<!-- http://purl.org/vocab/vann/preferredNamespaceUri -->


<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri"/>



<!-- http://www.linkedmodel.org/schema/vaem#acronym -->


<owl:AnnotationProperty rdf:about="http://www.linkedmodel.org/schema/vaem#acronym"/>



<!-- http://xmlns.com/foaf/0.1/name -->


<owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/name"/>




<!--
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
Expand All @@ -157,7 +157,7 @@
-->





<!-- http://w3id.org/rml/gather -->
Expand All @@ -169,7 +169,7 @@
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>gather</rdfs:label>
</owl:ObjectProperty>



<!-- http://w3id.org/rml/gatherAs -->
Expand All @@ -191,10 +191,23 @@
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>gather as</rdfs:label>
</owl:ObjectProperty>



<!-- http://w3id.org/rml/strategy -->

<!--

<owl:ObjectProperty rdf:about="http://w3id.org/rml/strategy">
<rdfs:domain rdf:resource="http://w3id.org/rml/GatherMap"/>
<rdfs:range rdf:resource="http://w3id.org/rml/Strategy"/>
<rdfs:comment xml:lang="en">A Strategy element to indicate how to perform an action (e.g. gather for collections and containers, join).</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>strategy</rdfs:label>
</owl:ObjectProperty>



<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
Expand All @@ -203,7 +216,7 @@
-->





<!-- http://w3id.org/rml/allowEmptyListAndContainer -->
Expand All @@ -216,10 +229,10 @@
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>allow empty list and container</rdfs:label>
</owl:DatatypeProperty>




<!--
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
Expand All @@ -228,7 +241,7 @@
-->





<!-- http://w3id.org/rml/GatherMap -->
Expand All @@ -240,24 +253,28 @@
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>Gather Map</rdfs:label>
</owl:Class>



<!-- http://w3id.org/rml/Strategy -->


<owl:Class rdf:about="http://w3id.org/rml/Strategy"/>

<owl:Class rdf:about="http://w3id.org/rml/Strategy">
<rdfs:comment xml:lang="en">Denotes a strategy to perform a action (e.g. gather for collections and containers, joins).</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>Strategy</rdfs:label>
</owl:Class>



<!-- http://w3id.org/rml/TermMap -->


<owl:Class rdf:about="http://w3id.org/rml/TermMap"/>




<!--
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Individuals
Expand All @@ -266,7 +283,7 @@
-->





<!-- http://w3id.org/rml/append -->
Expand All @@ -278,7 +295,7 @@
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>Append</rdfs:label>
</owl:NamedIndividual>



<!-- http://w3id.org/rml/cartesianProduct -->
Expand All @@ -290,28 +307,28 @@
<rdfs:isDefinedBy rdf:resource="http://w3id.org/rml/cc/"/>
<rdfs:label>Cartesian Product</rdfs:label>
</owl:NamedIndividual>



<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt -->


<owl:NamedIndividual rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt"/>



<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag -->


<owl:NamedIndividual rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag"/>



<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#List -->


<owl:NamedIndividual rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>



<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq -->
Expand All @@ -323,3 +340,5 @@


<!-- Generated by the OWL API (version 5.1.18) https://github.com/owlcs/owlapi/ -->


Loading

0 comments on commit 4a3be2f

Please sign in to comment.