Skip to content

Commit

Permalink
Make some dev predicates more expressive
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed May 3, 2024
1 parent cc8ba23 commit b7fd715
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion shacl/dev-daemmung.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ff:CitizenOwnsHouseShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:owns ;
sh:path ff:ownsHouse ;
sh:class ff:House ;
sh:minCount 1 ;
] .
Expand Down
2 changes: 1 addition & 1 deletion shacl/dev-eauto.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ff:CitizenOwnsElectricCarShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:owns ;
sh:path ff:ownsCar ;
sh:qualifiedValueShape ff:ElectricCarShape ;
sh:qualifiedMinCount 1 ;
] ;
Expand Down
2 changes: 1 addition & 1 deletion shacl/dev-solar.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ff:CitizenOwnsHouseShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:owns ;
sh:path ff:ownsHouse ;
sh:qualifiedValueShape [
sh:class ff:House ; # Shape that values must conform to, in this case, a House
] ;
Expand Down
2 changes: 1 addition & 1 deletion shacl/dev-wohngeld.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ff:CitizenRentsFlatShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:rents ;
sh:path ff:rentsFlat ;
sh:class ff:Flat ;
sh:minCount 1 ;
] .
Expand Down

0 comments on commit b7fd715

Please sign in to comment.