Compare commits
No commits in common. 'b42835bd680a89deb609f26ba59a9323060228d3' and '1e2f02df03cc130e95167840759afc7c86a0caf4' have entirely different histories.
b42835bd68
...
1e2f02df03
|
Before Width: | Height: | Size: 507 KiB After Width: | Height: | Size: 507 KiB |
@ -1,30 +1,20 @@
|
|||||||
get:
|
get:
|
||||||
operationId: indicatorSets
|
operationId: carePrograms
|
||||||
tags:
|
tags:
|
||||||
- Quality of Care
|
- Quality of Care
|
||||||
summary: Indicator sets
|
summary: Care programs
|
||||||
description: |-
|
description: |-
|
||||||
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.
|
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.
|
||||||
|
|
||||||
This endpoint is also reachable using URL `/qoc/careprogram`, but depricated.
|
|
||||||
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: |-
|
||||||
Indicator sets are returned.
|
Care programs are returned.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
* <a href="examples/qoc_indicatorsets.1.json">Example complete response</a>
|
* <a href="examples/qoc_careprogram.1.json">Example complete response</a>
|
||||||
* <a href="examples/qoc_indicatorsets.ui_example.png">Example UI render (somewhat outdated)</a>
|
* <a href="examples/qoc_careprogram.ui_example.png">Example UI render (<em>Somewhat outdated</em>)</a>
|
||||||
links:
|
links:
|
||||||
GetIndicatorSet:
|
GetIndicatorSet:
|
||||||
operationId: indicatorSet
|
operationId: indicatorSet
|
||||||
@ -1,24 +0,0 @@
|
|||||||
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'
|
|
||||||
Loading…
Reference in New Issue