Skip to content

Commit 0aa2b6e

Browse files
committed
Remove sparql:Operator
1 parent 0abd076 commit 0aa2b6e

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

sparql-ns.ttl

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,73 +14,72 @@ PREFIX owl:
1414
##
1515

1616
sparql:Function rdf:type rdfs:Class .
17-
sparql:Operator rdf:type rdfs:Class .
1817
sparql:FunctionalForm rdf:type rdfs:Class .
1918
sparql:Aggregate rdf:type rdfs:Class .
2019

2120
## Operators
2221

23-
sparql:plus rdf:type sparql:Function, sparql:Operator ;
22+
sparql:plus rdf:type sparql:Function ;
2423
rdfs:comment "This operator adds two numeric expressions and returns their sum." ;
2524
rdfs:isDefinedBy ;
2625
.
2726

28-
sparql:subtract rdf:type sparql:Function, sparql:Operator ;
27+
sparql:subtract rdf:type sparql:Function ;
2928
rdfs:comment "This operator subtracts the second numeric expression from the first and returns the result." ;
3029
rdfs:isDefinedBy ;
3130
.
3231

33-
sparql:multiply rdf:type sparql:Function, sparql:Operator ;
32+
sparql:multiply rdf:type sparql:Function ;
3433
rdfs:comment "This operator multiplies two numeric expressions and returns the product." ;
3534
rdfs:isDefinedBy ;
3635
.
3736

38-
sparql:divide rdf:type sparql:Function, sparql:Operator ;
37+
sparql:divide rdf:type sparql:Function ;
3938
rdfs:comment "This operator divides the first numeric expression by the second and returns the result." ;
4039
rdfs:isDefinedBy ;
4140
.
4241

43-
sparql:unary-minus rdf:type sparql:Function, sparql:Operator ;
42+
sparql:unary-minus rdf:type sparql:Function ;
4443
rdfs:comment "This unary operator returns the negation of a numeric expression." ;
4544
rdfs:isDefinedBy ;
4645
.
4746

48-
sparql:unary-plus rdf:type sparql:Function, sparql:Operator ;
47+
sparql:unary-plus rdf:type sparql:Function ;
4948
rdfs:comment "This unary operator returns the numeric expression unchanged, acting primarily as a syntactic indicator." ;
5049
rdfs:isDefinedBy ;
5150
.
5251

53-
sparql:equals rdf:type sparql:Function, sparql:Operator ;
52+
sparql:equals rdf:type sparql:Function ;
5453
rdfs:comment "This operator compares two expressions for equality.";
5554
rdfs:isDefinedBy ;
5655
.
5756

58-
sparql:not-equals rdf:type sparql:Function, sparql:Operator ;
57+
sparql:not-equals rdf:type sparql:Function ;
5958
rdfs:comment "This operator tests two expressions for inequality.";
6059
rdfs:isDefinedBy ;
6160
.
6261

63-
sparql:greaterThan rdf:type sparql:Function, sparql:Operator ;
62+
sparql:greaterThan rdf:type sparql:Function ;
6463
rdfs:comment "This operator tests whether the first RDF term is greater than the second RDF term.";
6564
rdfs:isDefinedBy ;
6665
.
6766

68-
sparql:lessThan rdf:type sparql:Function, sparql:Operator ;
67+
sparql:lessThan rdf:type sparql:Function ;
6968
rdfs:comment "This operator tests whether the first RDF term is less than the second RDF term.";
7069
rdfs:isDefinedBy ;
7170
.
7271

73-
sparql:greaterThanOrEqual rdf:type sparql:Function, sparql:Operator ;
72+
sparql:greaterThanOrEqual rdf:type sparql:Function ;
7473
rdfs:comment "This operator tests whether the first RDF term is greater or equal to the second RDF term.";
7574
rdfs:isDefinedBy ;
7675
.
7776

78-
sparql:lessThanOrEqual rdf:type sparql:Function, sparql:Operator ;
77+
sparql:lessThanOrEqual rdf:type sparql:Function ;
7978
rdfs:comment "This operator tests whether the first RDF term is less than or equal to the second RDF term.";
8079
rdfs:isDefinedBy ;
8180
.
8281

83-
sparql:logical-not rdf:type sparql:Functional, sparql:Operator ;
82+
sparql:logical-not rdf:type sparql:Functional ;
8483
rdfs:comment "This form computes the logical NOT of a boolean expression." ;
8584
rdfs:isDefinedBy ;
8685
.
@@ -112,12 +111,12 @@ sparql:filter-not-exists rdf:type sparql:FunctionalForm ;
112111
rdfs:isDefinedBy ;
113112
.
114113

115-
sparql:logical-or rdf:type sparql:FunctionalForm, sparql:Operator ;
114+
sparql:logical-or rdf:type sparql:FunctionalForm ;
116115
rdfs:comment "This form computes the logical OR of two boolean expressions." ;
117116
rdfs:isDefinedBy ;
118117
.
119118

120-
sparql:logical-and rdf:type sparql:FunctionalForm, sparql:Operator ;
119+
sparql:logical-and rdf:type sparql:FunctionalForm ;
121120
rdfs:comment "This form computes the logical AND of two boolean expressions." ;
122121
rdfs:isDefinedBy ;
123122
.

0 commit comments

Comments
 (0)