@@ -130,6 +130,7 @@ schema:sponsor a owl:ObjectProperty ;
130130
131131schema:orderedItem a owl:ObjectProperty ;
132132 rdfs:label " Ordered item" ;
133+ rdfs:range schema:Product ;
133134 rdfs:isDefinedBy : .
134135
135136schema:name a owl:DatatypeProperty ;
@@ -253,11 +254,11 @@ schema:location a owl:ObjectProperty ;
253254 owl:maxCardinality 1 ;
254255 rdfs:isDefinedBy : .
255256
256- # Person
257+ # broker
257258
258259# orders handled by this employee
259260
260- schema:Person ldh:template :OrdersHandledByEmployee .
261+ schema:broker ldh:inverseView :OrdersHandledByEmployee .
261262
262263:OrdersHandledByEmployee a ldh:View ;
263264 dct:title " Orders handled by this employee" ;
@@ -278,11 +279,11 @@ ORDER BY DESC(?order)
278279""" ;
279280 rdfs:isDefinedBy : .
280281
281- # Corporation
282+ # customer
282283
283284# orders from this customer
284285
285- schema:Corporation ldh:template :OrdersFromCustomer .
286+ schema:customer ldh:inverseView :OrdersFromCustomer .
286287
287288:OrdersFromCustomer a ldh:View ;
288289 dct:title " Orders from this customer" ;
@@ -303,9 +304,11 @@ ORDER BY DESC(?order)
303304""" ;
304305 rdfs:isDefinedBy : .
305306
307+ # provider
308+
306309# products supplied by this supplier
307310
308- schema:Corporation ldh:template :ProductsFromSupplier .
311+ schema:provider ldh:inverseView :ProductsFromSupplier .
309312
310313:ProductsFromSupplier a ldh:View ;
311314 dct:title " Products supplied by this supplier" ;
@@ -326,11 +329,11 @@ ORDER BY ?product
326329""" ;
327330 rdfs:isDefinedBy : .
328331
329- # Place
332+ # containedInPlace
330333
331334# cities in this region
332335
333- schema:Place ldh:template :CitiesInRegion .
336+ schema:containedInPlace ldh:inverseView :CitiesInRegion .
334337
335338:CitiesInRegion a ldh:View ;
336339 dct:title " Cities in this region" ;
@@ -351,11 +354,11 @@ ORDER BY ?city
351354""" ;
352355 rdfs:isDefinedBy : .
353356
354- # Product
357+ # orderedItem
355358
356359# orders containing this product
357360
358- schema:Product ldh:template :OrdersContainingProduct .
361+ schema:orderedItem ldh:inverseView :OrdersContainingProduct .
359362
360363:OrdersContainingProduct a ldh:View ;
361364 dct:title " Orders containing this product" ;
0 commit comments