Skip to content

Commit

Permalink
Add senioren-bahncard
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Apr 16, 2024
1 parent fbf2e70 commit 0e02c1f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
5 changes: 2 additions & 3 deletions shacl/bildungsgutschein.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
ff:metadata
ff:author ff:benglaeser ;
ff:created "2024-04-02"^^xsd:date ;
ff:title "Bildungsgutschein Citizenship Check" ;
rdfs:comment "Validates that the entity is of type ff:Citizen for Bildungsgutschein eligibility." ;
ff:title "Bildungsgutschein" ;
rdfs:comment "Checks for eligibility for the Bildungsgutschein" ;
rdfs:seeAlso <https://mein-now.de/privatpersonen/foerderungen/suche/bildungsgutschein> .


ff:BildungsgutscheinCitizenshipShape
a sh:NodeShape ;
sh:targetClass ff:Citizen ;
Expand Down
2 changes: 1 addition & 1 deletion shacl/opendva-existenzgruendungspass-thueringen.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

ff:metadata ff:author ff:benjaminaaron ;
ff:created "2024-04-09"^^xsd:date ;
ff:title "Gründungsrichtlinie: Existenzgründungspass" ;
ff:title "Existenzgründungspass Thüringen" ;
rdfs:seeAlso <https://www.aufbaubank.de/Foerderprogramme/Gruendungsrichtlinie-Existenzgruendungspass> .

# CONDITIONS
Expand Down
21 changes: 21 additions & 0 deletions shacl/senioren-bahncard.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ff: <https://foerderfunke.org/default#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ff:metadata ff:author ff:benjaminaaron ;
ff:created "2024-04-16"^^xsd:date ;
ff:title "Senioren BahnCard" ;
rdfs:seeAlso <https://www.bahn.de/angebot/bahncard> .

# CONDITIONS

ff:MainPersonShape a sh:NodeShape ;
sh:targetClass ff:Citizen ;
sh:property [
sh:path ff:hasAge ;
sh:minInclusive 65 ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:message "The age must be at least 65" ;
] .

0 comments on commit 0e02c1f

Please sign in to comment.