Moved array of all possible group care programs.

EH/population-statistics-authorisation
Eric Hoekstra 1 year ago
parent 29a622d239
commit 3a1e5ec087

@ -19,14 +19,26 @@ get:
content: content:
application/json: application/json:
schema: schema:
type: array
items:
type: object type: object
properties: properties:
caregroup: caregroup:
type: object
properties:
name:
type: string type: string
description: Identifying tag name of the care group. description: Identifying tag name of the care group.
example: demo_fabel example: demo_fabel
careprograms:
description: All possible care programs for the care group. For every group it known to which programs they are participating. From this set the actual care programs reported in practices property can be substracted to get a list of missing programs.
example:
- OuderenZorg
- DM
- COPD
- HVZ
- VVR
type: array
items:
$ref: '../schemas/CareProgram-enum.yaml'
practices: practices:
type: array type: array
items: items:
@ -52,17 +64,6 @@ get:
active: active:
type: boolean type: boolean
description: True if today is on or after `periodStart` and before `periodEnd`. description: True if today is on or after `periodStart` and before `periodEnd`.
careprograms:
description: All possible care programs for the care group. For every group it known to which programs they are participating. From this set the actual care programs reported in practices property can be substracted to get a list of missing programs.
example:
- OuderenZorg
- DM
- COPD
- HVZ
- VVR
type: array
items:
$ref: '../schemas/CareProgram-enum.yaml'
'401': '401':
$ref: '../zoo-api.yaml/#/components/responses/NoAuth' $ref: '../zoo-api.yaml/#/components/responses/NoAuth'
'403': '403':

Loading…
Cancel
Save