description:Code of the doctor as known in the HIS.
description:Code of the doctor as known in the HIS.
example:01015678,01018765,01014321
example:01015678,01018765,01014321
@ -40,7 +40,8 @@ get:
$ref:../schemas/pat-patId.yaml
$ref:../schemas/pat-patId.yaml
responses:
responses:
200:
200:
description:"Lists for exactly one patient all feats per day. All ICPC codes which can be found on a given day are added to the combination of feat and day. This causes duplicate output of the ICPC codes if two or more different feats are registered on the same day. This is due a lack of the registration of the exact time of the contact moment in most HIS's."
description:|-
Lists for exactly one patient all feats per day. All ICPC codes which can be found on a given day are added to the combination of feat and day. This causes duplicate output of the ICPC codes if two or more different feats are registered on the same day. This is due to a lack of the registration of the exact time of the contact moment in some GP information systems.
content:
content:
application/json:
application/json:
schema:
schema:
@ -54,13 +55,13 @@ get:
type:object
type:object
properties:
properties:
featCode:
featCode:
type:number
type:integer
example:12001
example:12001
date:
date:
type:string
$ref:../schemas/date.yaml
example:2018-03-29
employee:
employee:
type:string
type:string
description:The memocode as used in the GP Information System for the employee that is responsible for these feats.
summary:"Lists the top 20 frequent users (patients)"
summary:"Lists the top n (1-50) frequent users (patients)"
parameters:
parameters:
- name:periodStart
- name:periodStart
in:query
in:query
@ -20,8 +20,8 @@ get:
schema:
schema:
type:array
type:array
items:
items:
type:number
- name:doctorCodes
- name:doctorCodes
type:integer
in:query
in:query
description:Code of the doctor as known in the HIS.
description:Code of the doctor as known in the HIS.
example:01015678,01018765,01014321
example:01015678,01018765,01014321
@ -36,7 +36,10 @@ get:
$ref:../schemas/med_dossier/FeatCode.yaml
$ref:../schemas/med_dossier/FeatCode.yaml
- name:patients
- name:patients
in:query
in:query
description:If present, restrict output to only patients in this list.
schema:
schema:
type:array
items:
$ref:../schemas/pat-patId.yaml
$ref:../schemas/pat-patId.yaml
- name:ppi
- name:ppi
in:query
in:query
@ -48,10 +51,12 @@ get:
in:query
in:query
description:"Some integer between 1 and 50. Limits the output to the top 1 to 50 of the frequent users (patients). Defaults to 20 if omitted or not in the specified range."
description:"Some integer between 1 and 50. Limits the output to the top 1 to 50 of the frequent users (patients). Defaults to 20 if omitted or not in the specified range."
schema:
schema:
type:number
type:integer
minimum:1
maximum:50
responses:
responses:
200:
200:
description:"Responses an array with patients. Only the top 20 users is exported. The output is ranked with the most frequent user at position 0 of the array."
description:"Responds with an array with patients. Only the top `limit` users are exported. The output is ranked with the most frequent user at position 0 of the array."