Compare commits

...

4 Commits

Before

Width:  |  Height:  |  Size: 507 KiB

After

Width:  |  Height:  |  Size: 507 KiB

@ -0,0 +1,24 @@
get:
operationId: carePrograms
tags:
- Quality of Care
summary: Care programs
description: Enumerate all care programs (ketens) in which the customer participates.
parameters:
- $ref: '../zoo-api.yaml#/components/parameters/Authorization'
responses:
'200':
description: Set of care programs (ketens).
content:
application/json:
schema:
type: array
items:
type: object
properties:
careprogram:
$ref: '../schemas/CareProgram-enum.yaml'
'401':
$ref: '../zoo-api.yaml/#/components/responses/NoAuth'
'403':
$ref: '../zoo-api.yaml/#/components/responses/NoAccess'

@ -1,20 +1,30 @@
get: get:
operationId: carePrograms operationId: indicatorSets
tags: tags:
- Quality of Care - Quality of Care
summary: Care programs summary: Indicator sets
description: |- description: |-
List all available care programs. Includes all care programs that the user is allowed to enable or preview, i.e. even ones that shouldn't be shown by default. List all available indicator sets. Includes all sets that the user is allowed to enable or preview, i.e. even ones that shouldn't be shown by default.
This endpoint is also reachable using URL `/qoc/careprogram`, but that endpoint is deprecated.
parameters: parameters:
- name: carePrograms
in: query
description: |-
A comma separated list of care program types, for example `DM,COPD`. The response is limited to the specified care programs.
schema:
type: array
items:
$ref: '../schemas/CareProgram-enum.yaml'
- $ref: '../zoo-api.yaml#/components/parameters/Authorization' - $ref: '../zoo-api.yaml#/components/parameters/Authorization'
responses: responses:
'200': '200':
description: |- description: |-
Care programs are returned. Indicator sets are returned.
Examples: Examples:
* <a href="examples/qoc_careprogram.1.json">Example complete response</a> * <a href="examples/qoc_indicatorsets.1.json">Example complete response</a>
* <a href="examples/qoc_careprogram.ui_example.png">Example UI render (<em>Somewhat outdated</em>)</a> * <a href="examples/qoc_indicatorsets.ui_example.png">Example UI render (somewhat outdated)</a>
links: links:
GetIndicatorSet: GetIndicatorSet:
operationId: indicatorSet operationId: indicatorSet
@ -25,7 +35,7 @@ get:
schema: schema:
type: object type: object
properties: properties:
programs: indicatorsets:
type: array type: array
items: items:
type: object type: object

@ -69,18 +69,20 @@ paths:
$ref: 'paths/population_frequentUser_patients.yaml' $ref: 'paths/population_frequentUser_patients.yaml'
/population/frequentUser/patient: /population/frequentUser/patient:
$ref: 'paths/population_frequentUser_patient.yaml' $ref: 'paths/population_frequentUser_patient.yaml'
/qoc/careprogram: /qoc/careprograms:
$ref: 'paths/qoc_careprogram.yaml' $ref: 'paths/qoc_careprograms.yaml'
/qoc/checkupList/{setKey}: /qoc/indicatorsets:
$ref: 'paths/qoc_checkupList_{setKey}.yaml' $ref: 'paths/qoc_indicatorsets.yaml'
/qoc/checkupList/setStatus:
$ref: 'paths/qoc_checkupList_set_status.yaml'
/qoc/indicatorset/{setKey}: /qoc/indicatorset/{setKey}:
$ref: 'paths/qoc_indicatorset_{setKey}.yaml' $ref: 'paths/qoc_indicatorset_{setKey}.yaml'
/qoc/indicator/{setKey}/{indicatorKey}/patients: /qoc/indicator/{setKey}/{indicatorKey}/patients:
$ref: 'paths/qoc_indicator_{setKey}_{indicatorKey}_patients.yaml' $ref: 'paths/qoc_indicator_{setKey}_{indicatorKey}_patients.yaml'
/qoc/indicator/{setKey}/{indicatorKey}/participants: /qoc/indicator/{setKey}/{indicatorKey}/participants:
$ref: 'paths/qoc_indicator_{setKey}_{indicatorKey}_participants.yaml' $ref: 'paths/qoc_indicator_{setKey}_{indicatorKey}_participants.yaml'
/qoc/checkupList/{setKey}:
$ref: 'paths/qoc_checkupList_{setKey}.yaml'
/qoc/checkupList/setStatus:
$ref: 'paths/qoc_checkupList_set_status.yaml'
/qoc/list-groups: /qoc/list-groups:
$ref: 'paths/qoc_list-groups.yaml' $ref: 'paths/qoc_list-groups.yaml'
/qoc/participating-practices: /qoc/participating-practices:

Loading…
Cancel
Save