Skip to content

Commit

Permalink
Add income fields for missing data prio dev
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Apr 30, 2024
1 parent 4d90ec8 commit fce8aef
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions shacl/dev-daemmung.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

ff:MainPersonShape a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:hasIncomeBrutto ;
sh:minCount 1 ;
sh:maxCount 1 ;
] .

ff:CitizenOwnsHouseShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
Expand Down
13 changes: 13 additions & 0 deletions shacl/dev-kindergeld.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

ff:MainPersonShape a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:hasIncomeBrutto ;
sh:minCount 1 ;
sh:maxCount 1 ;
] ;
sh:property [
sh:path ff:hasIncomeNetto ;
sh:minCount 1 ;
sh:maxCount 1 ;
] .

ff:ChildAllowanceEligibilityShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
Expand Down

0 comments on commit fce8aef

Please sign in to comment.