Compare commits

..

3 Commits

Author SHA1 Message Date
Reinier Zwitserloot 84d010a78c
[qoc] Added 'focus' property of indicators 5 months ago
Reinier Zwitserloot c64b885f51
share authorizations for `customer/basic`. 7 months ago
Reinier Zwitserloot 409e5d62d8
[trivial] 7 months ago

@ -62,6 +62,12 @@ get:
email: email:
type: string type: string
example: "M.Dobbelsteen@zorgoporde.nl" example: "M.Dobbelsteen@zorgoporde.nl"
share_authorizations:
description: The GP has granted permission to share certain aspects of the EPD data with the listed third parties.
type: array
example: ["KSYOS_FUNDUS"]
items:
type: string
dataProcessing: dataProcessing:
type: object type: object
properties: properties:

@ -110,10 +110,8 @@ get:
$ref: ../schemas/date.yaml $ref: ../schemas/date.yaml
example: '2024-04-01' example: '2024-04-01'
description: |- description: |-
The date when this report for the All fundus calculations for each practice that is part of this group is up to date as of this date.
The date used for all calculations: Any time spans are relative to this date, any measurement requirements This date is appropriate to feed to `ifNewerThan` in a future call.
as stated in the care group's policies such as 'must be registered every year or cannot be considered' are applied
to this date, anything that occured after this date is ignored.
practices: practices:
description: |- description: |-
One entry for each practice that is part of this care group and participates in at least one funduscopy-related care program. One entry for each practice that is part of this care group and participates in at least one funduscopy-related care program.

@ -138,8 +138,16 @@ get:
If present, this indicator is optional, and the value contains dutch human readable text explaining why. If present, this indicator is optional, and the value contains dutch human readable text explaining why.
type: string type: string
example: Volgens HKN protocol is BMI meten optioneel bij Astma patiënten; echter stelt het protocol wel een relatie tussen overgewicht en de mate van klachten. example: Volgens HKN protocol is BMI meten optioneel bij Astma patiënten; echter stelt het protocol wel een relatie tussen overgewicht en de mate van klachten.
focus:
description: |-
Caregroups can choose key performance indicators; such indicators are considered 'focus' indicators.
Focus indicators tend to be temporary; most caregroups adjust them yearly or every other year.
type: boolean
example: false
required: required:
- title - title
- key
- focus
patients: patients:
type: array type: array
items: items:

@ -20,6 +20,12 @@ properties:
description: Short, in dutch, plain text. description: Short, in dutch, plain text.
type: string type: string
example: Prevalentie Diabetes example: Prevalentie Diabetes
focus:
description: |-
Caregroups can choose key performance indicators; such indicators are considered 'focus' indicators.
Focus indicators tend to be temporary; most caregroups adjust them yearly or every other year.
type: boolean
example: false
htmlDescription: htmlDescription:
description: In dutch, HTML formatted; if present, contains details on how this value is measured (in more readable, less technical terms than `htmlDetail`. description: In dutch, HTML formatted; if present, contains details on how this value is measured (in more readable, less technical terms than `htmlDetail`.
type: string type: string

@ -15,12 +15,11 @@ properties:
refDate: refDate:
$ref: 'IndicatorSet.yaml#/properties/refDate' $ref: 'IndicatorSet.yaml#/properties/refDate'
htmlDescription: htmlDescription:
description: A more detailed description of what this indicator calculates. *HTML* $ref: 'Indicator.yaml#/properties/htmlDescription'
type: string
htmlDescriptionDetail: htmlDescriptionDetail:
description: |- $ref: 'Indicator.yaml#/properties/htmlDetail'
*OPTIONAL* A description of which exact formulas and codes are checked to calculate this indicator. *HTML*. focus:
type: string $ref: 'Indicator.yaml#/properties/focus'
blocks: blocks:
description: |- description: |-
A block describes one particular outcome (such as 'patients with conflicting registration'). A block describes one particular outcome (such as 'patients with conflicting registration').

@ -18,6 +18,8 @@ properties:
$ref: 'IndicatorDetail.yaml#/properties/htmlDescription' $ref: 'IndicatorDetail.yaml#/properties/htmlDescription'
htmlDescriptionDetail: htmlDescriptionDetail:
$ref: 'IndicatorDetail.yaml#/properties/htmlDescriptionDetail' $ref: 'IndicatorDetail.yaml#/properties/htmlDescriptionDetail'
focus:
$ref: 'Indicator.yaml#/properties/focus'
xMin: xMin:
$ref: 'Indicator.yaml#/properties/xMin' $ref: 'Indicator.yaml#/properties/xMin'
xMax: xMax:

Loading…
Cancel
Save