Uitwisselprofiel Kwaliteitsbeeld

Voorbeeld 5 Aantal cliënten met een Wlz-indicatie met zorgprofiel VV per leveringsvorm

Concepten

Relaties

Eigenschappen

Instanties

SPARQL query

Code gekopieerd

...

Kopieer naar klembord

1# Indicator: Voorbeeld 5 Aantal clienten met een Wlz-indicatie met zorgprofiel VV per leveringsvorm
2# Parameters:
3# Ontologie: versie 3.0
4
5PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
6PREFIX onz-zorg: <http://purl.org/ozo/onz-zorg#>
7PREFIX onz-g: <http://purl.org/ozo/onz-g#>
8PREFIX onz-org: <http://purl.org/ozo/onz-org#>
9PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
10
11SELECT
12    ?Organisatie
13    (SUM(?verblijf) as ?aantal_verblijf)
14    (SUM(?vpt) as ?aantal_vpt)
15    (SUM(?mpt) as ?aantal_mpt)
16    (SUM(?pgb) as ?aantal_pgb)
17WHERE
18{
19    BIND ("2024-12-31"^^xsd:date AS ?peildatum)
20    VALUES ?zorgprofiel { onz-zorg:4VV onz-zorg:5VV onz-zorg:6VV onz-zorg:7VV onz-zorg:8VV onz-zorg:9VV onz-zorg:10VV }
21
22    #selecteer de zorgprocessen die voldoen aan de inclusiecriteria
23    ?zorgproces
24        a onz-zorg:NursingProcess ;
25        onz-g:definedBy ?indicatie ;
26        onz-g:hasPerdurantLocation/onz-g:partOf* ?locatie ; # locatie bevat niet alleen vestigingen
27        onz-g:startDatum ?start_zorgproces .
28        OPTIONAL {?zorgproces onz-g:eindDatum ?eind_zorgproces}
29        FILTER (?start_zorgproces <= ?peildatum && ((?eind_zorgproces >= ?peildatum)||(!BOUND(?eind_zorgproces))))
30
31    #includeer de organisatie als geheel
32    ?locatie onz-org:vestigingVan ?organisatie_uri .
33    ?organisatie_uri
34        a onz-g:Business ;
35        rdfs:label ?Organisatie .
36
37    #selecteer de bijbehorende indicatie, om unieke clienten te kunnen bepalen
38    ?indicatie
39        a onz-zorg:WlzIndicatie ;
40        onz-g:hasPart ?zorgprofiel ;
41        onz-g:hasPart ?lv ;
42        onz-g:isAbout ?client .
43    ?client a onz-g:Human .
44    ?lv
45        a onz-zorg:Leveringsvorm ;
46        rdfs:label ?leveringsvorm_label ;
47
48    #Per financieringsstroom
49    BIND(IF(?lv = onz-zorg:instelling, 1, 0) AS ?verblijf)
50    BIND(IF(?lv = onz-zorg:vpt, 1, 0) AS ?vpt)
51    BIND(IF(?lv = onz-zorg:mpt, 1, 0) AS ?mpt)
52    BIND(IF(?lv = onz-zorg:pgb, 1, 0) AS ?pgb)
53}
54GROUP BY ?Organisatie
55

Heb je feedback?

Loopt u tegen een issue of vraag aan bij het KIK-V product? Neem dan contact met ons op!