We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Patient property healthInsurance in sample data contains:
Patient
healthInsurance
(https://dnpm-dip.net/api/mtb/fake/data/patient-record?format=application/json%2Bv2)
... "healthInsurance": { "extId": { "value": "aok-ik", "system": "IK" }, "display": "AOK", "type": "Organization" } ...
but code shows a reference, not object:
dnpm-dip-core/src/main/scala/de/dnpm/dip/model/Patient.scala
Line 23 in a067fb3
The code matches provided schema file: (https://dnpm-dip.net/api/mtb/etl/patient-record/schema?format=application/json%2Bv2)
... "healthInsurance" : { "$ref" : "#Reference" } ...
Reference is defined in schema as (without extId):
extId
"Reference": { "$anchor": "Reference", "properties": { "id": { "type": "string" }, "display": { "type": "string" }, "type": { "type": "string" } }, "additionalProperties": false, "type": "object", "required": [ "id" ] }
and in code (containing extId):
dnpm-dip-core/src/main/scala/de/dnpm/dip/model/Reference.scala
Lines 15 to 21 in a067fb3
Is the sample data out of date or anything else missing?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Patient
propertyhealthInsurance
in sample data contains:(https://dnpm-dip.net/api/mtb/fake/data/patient-record?format=application/json%2Bv2)
but code shows a reference, not object:
dnpm-dip-core/src/main/scala/de/dnpm/dip/model/Patient.scala
Line 23 in a067fb3
The code matches provided schema file:
(https://dnpm-dip.net/api/mtb/etl/patient-record/schema?format=application/json%2Bv2)
Reference is defined in schema as (without
extId
):and in code (containing
extId
):dnpm-dip-core/src/main/scala/de/dnpm/dip/model/Reference.scala
Lines 15 to 21 in a067fb3
Is the sample data out of date or anything else missing?
The text was updated successfully, but these errors were encountered: