Skip to content

Commit f8c4050

Browse files
committed
typo plus added domain and range to missing property
1 parent add0d32 commit f8c4050

File tree

8 files changed

+329
-288
lines changed

8 files changed

+329
-288
lines changed

development/softwareDescription.owl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,8 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
947947

948948
### https://w3id.org/okn/o/sd#recommendedIncrement
949949
:recommendedIncrement rdf:type owl:DatatypeProperty ;
950+
rdfs:domain :Parameter ;
951+
rdfs:range xsd:float ;
950952
rdfs:comment "Value that represents how a parameter should be incremented on each iteration of a software component execution. This value is important when preparing execution ensembles automatically, e.g., simulating crop production varying the parameter \"fertilizer amount\" in increments of 10%."@en ;
951953
rdfs:label "recommended increment"@en .
952954

@@ -1229,7 +1231,7 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
12291231

12301232
### https://w3id.org/okn/o/sd#Visualization
12311233
:Visualization rdf:type owl:Class ;
1232-
rdfs:comment "Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc."@en ;
1234+
rdfs:comment "Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc."@en ;
12331235
rdfs:label "Visualization"@en .
12341236

12351237

release/1.5.0/ontology.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@
907907
"@type" : [ "http://www.w3.org/2002/07/owl#Class" ],
908908
"http://www.w3.org/2000/01/rdf-schema#comment" : [ {
909909
"@language" : "en",
910-
"@value" : "Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc."
910+
"@value" : "Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc."
911911
} ],
912912
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
913913
"@language" : "en",
@@ -2132,9 +2132,15 @@
21322132
"@language" : "en",
21332133
"@value" : "Value that represents how a parameter should be incremented on each iteration of a software component execution. This value is important when preparing execution ensembles automatically, e.g., simulating crop production varying the parameter \"fertilizer amount\" in increments of 10%."
21342134
} ],
2135+
"http://www.w3.org/2000/01/rdf-schema#domain" : [ {
2136+
"@id" : "https://w3id.org/okn/o/sd#Parameter"
2137+
} ],
21352138
"http://www.w3.org/2000/01/rdf-schema#label" : [ {
21362139
"@language" : "en",
21372140
"@value" : "recommended increment"
2141+
} ],
2142+
"http://www.w3.org/2000/01/rdf-schema#range" : [ {
2143+
"@id" : "http://www.w3.org/2001/XMLSchema#float"
21382144
} ]
21392145
}, {
21402146
"@id" : "https://w3id.org/okn/o/sd#referencePublication",

release/1.5.0/ontology.nt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,6 +970,8 @@ _:genid86 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1
970970
#
971971
# https://w3id.org/okn/o/sd#recommendedIncrement
972972
<https://w3id.org/okn/o/sd#recommendedIncrement> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
973+
<https://w3id.org/okn/o/sd#recommendedIncrement> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/okn/o/sd#Parameter> .
974+
<https://w3id.org/okn/o/sd#recommendedIncrement> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#float> .
973975
<https://w3id.org/okn/o/sd#recommendedIncrement> <http://www.w3.org/2000/01/rdf-schema#comment> "Value that represents how a parameter should be incremented on each iteration of a software component execution. This value is important when preparing execution ensembles automatically, e.g., simulating crop production varying the parameter \"fertilizer amount\" in increments of 10%."@en .
974976
<https://w3id.org/okn/o/sd#recommendedIncrement> <http://www.w3.org/2000/01/rdf-schema#label> "recommended increment"@en .
975977
#
@@ -1246,7 +1248,7 @@ _:genid103 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/
12461248
#
12471249
# https://w3id.org/okn/o/sd#Visualization
12481250
<https://w3id.org/okn/o/sd#Visualization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
1249-
<https://w3id.org/okn/o/sd#Visualization> <http://www.w3.org/2000/01/rdf-schema#comment> "Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc."@en .
1251+
<https://w3id.org/okn/o/sd#Visualization> <http://www.w3.org/2000/01/rdf-schema#comment> "Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc."@en .
12501252
<https://w3id.org/okn/o/sd#Visualization> <http://www.w3.org/2000/01/rdf-schema#label> "Visualization"@en .
12511253
#
12521254
# Generated by the OWL API (version 5.1.11) https://github.com/owlcs/owlapi/

release/1.5.0/ontology.ttl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,6 +947,8 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
947947

948948
### https://w3id.org/okn/o/sd#recommendedIncrement
949949
:recommendedIncrement rdf:type owl:DatatypeProperty ;
950+
rdfs:domain :Parameter ;
951+
rdfs:range xsd:float ;
950952
rdfs:comment "Value that represents how a parameter should be incremented on each iteration of a software component execution. This value is important when preparing execution ensembles automatically, e.g., simulating crop production varying the parameter \"fertilizer amount\" in increments of 10%."@en ;
951953
rdfs:label "recommended increment"@en .
952954

@@ -1229,7 +1231,7 @@ owl:priorVersion rdf:type owl:AnnotationProperty .
12291231

12301232
### https://w3id.org/okn/o/sd#Visualization
12311233
:Visualization rdf:type owl:Class ;
1232-
rdfs:comment "Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc."@en ;
1234+
rdfs:comment "Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc."@en ;
12331235
rdfs:label "Visualization"@en .
12341236

12351237

release/1.5.0/ontology.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1492,6 +1492,8 @@
14921492

14931493

14941494
<owl:DatatypeProperty rdf:about="https://w3id.org/okn/o/sd#recommendedIncrement">
1495+
<rdfs:domain rdf:resource="https://w3id.org/okn/o/sd#Parameter"/>
1496+
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
14951497
<rdfs:comment xml:lang="en">Value that represents how a parameter should be incremented on each iteration of a software component execution. This value is important when preparing execution ensembles automatically, e.g., simulating crop production varying the parameter &quot;fertilizer amount&quot; in increments of 10%.</rdfs:comment>
14961498
<rdfs:label xml:lang="en">recommended increment</rdfs:label>
14971499
</owl:DatatypeProperty>
@@ -1946,7 +1948,7 @@
19461948

19471949

19481950
<owl:Class rdf:about="https://w3id.org/okn/o/sd#Visualization">
1949-
<rdfs:comment xml:lang="en">Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc.</rdfs:comment>
1951+
<rdfs:comment xml:lang="en">Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc.</rdfs:comment>
19501952
<rdfs:label xml:lang="en">Visualization</rdfs:label>
19511953
</owl:Class>
19521954
</rdf:RDF>

release/1.5.0/sections/changelog-en.html

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
<div id="changelog">
22
<h2 id="changes" class="list">Changes from last version</h2>
33
<h3 id="changeClass" class="list">Classes</h3>
4-
<details><summary><u>Added classes</u></summary>
4+
<details><summary><u>Modified classes</u></summary>
5+
<ul><li><a href="#Visualization">https://w3id.org/okn/o/sd#Visualization</a>
6+
<ul>
7+
<li>Added: rdfs:comment "Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc."@en</li>
8+
</ul>
9+
<ul>
10+
<li>Deleted: rdfs:comment "Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc."@en</li>
11+
</ul>
12+
</li>
13+
</ul></details><details><summary><u>Added classes</u></summary>
514
<ul><li><a href="#Index">https://w3id.org/okn/o/sd#Index</a>
615
<ul>
716
<li>Added: SubClass of https://w3id.org/okn/o/sd#Variable</li>
@@ -36,6 +45,10 @@ <h3 id="changeClass" class="list">Classes</h3>
3645
</li>
3746
</ul></details><details><summary><u>Added data properties</u></summary>
3847
<ul><li><a href="#recommendedIncrement">https://w3id.org/okn/o/sd#recommendedIncrement</a>
48+
<ul>
49+
<li>Added: Domain https://w3id.org/okn/o/sd#Parameter</li>
50+
<li>Added: Range http://www.w3.org/2001/XMLSchema#float</li>
51+
</ul>
3952
</li>
4053
<li><a href="#tag">https://w3id.org/okn/o/sd#tag</a>
4154
<ul>

release/1.5.0/sections/crossref-en.html

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@ <h3>Parameter<sup class="type-c" title="class">c</sup>
339339
<sup class="type-dp" title="data property">dp</sup>, <a href="#hasDataType" title="https://w3id.org/okn/o/sd#hasDataType">has data type</a>
340340
<sup class="type-dp" title="data property">dp</sup>, <a href="#hasFixedValue" title="https://w3id.org/okn/o/sd#hasFixedValue">has fixed value</a>
341341
<sup class="type-dp" title="data property">dp</sup>, <a href="#hasStepSize" title="https://w3id.org/okn/o/sd#hasStepSize">has step size</a>
342+
<sup class="type-dp" title="data property">dp</sup>, <a href="#recommendedIncrement" title="https://w3id.org/okn/o/sd#recommendedIncrement">recommended increment</a>
342343
<sup class="type-dp" title="data property">dp</sup>
343344
</dd>
344345
<dt>is in range of</dt>
@@ -845,7 +846,7 @@ <h3>Visualization<sup class="type-c" title="class">c</sup>
845846
<p>
846847
<strong>IRI:</strong> https://w3id.org/okn/o/sd#Visualization</p>
847848
<div class="comment">
848-
<span class="markdown">Class to represent any type of visualization related to a software. For exmaple, a dynamic HTML page, a video, etc.</span>
849+
<span class="markdown">Class to represent any type of visualization related to a software. For example, a dynamic HTML page, a video, etc.</span>
849850
</div>
850851
<dl class="description">
851852
<dt>is in domain of</dt>
@@ -3921,6 +3922,19 @@ <h3>recommended increment<sup class="type-dp" title="data property">dp</sup>
39213922
<div class="comment">
39223923
<span class="markdown">Value that represents how a parameter should be incremented on each iteration of a software component execution. This value is important when preparing execution ensembles automatically, e.g., simulating crop production varying the parameter "fertilizer amount" in increments of 10%.</span>
39233924
</div>
3925+
<div class="description">
3926+
<dl>
3927+
<dt>has domain</dt>
3928+
<dd>
3929+
<a href="#Parameter" title="https://w3id.org/okn/o/sd#Parameter">Parameter</a>
3930+
<sup class="type-c" title="class">c</sup>
3931+
</dd>
3932+
<dt>has range</dt>
3933+
<dd>
3934+
<span class="dotted" title="http://www.w3.org/2001/XMLSchema#float">float</span>
3935+
</dd>
3936+
</dl>
3937+
</div>
39243938
</div>
39253939
<div class="entity" id="https://codemeta.github.io/terms/referencePublication">
39263940
<h3>reference publication<sup class="type-dp" title="data property">dp</sup>

0 commit comments

Comments
 (0)