Gebz:FHIR Pregnancy Card: verschil tussen versies
Regel 7: | Regel 7: | ||
This page describes the process of collecting pregnancy data in a patient's personal health record (PHR). The process is initiated by the patient (pregnant woman). | This page describes the process of collecting pregnancy data in a patient's personal health record (PHR). The process is initiated by the patient (pregnant woman). | ||
− | This IG is a technical representation of the This is a patient's use case, in a personal health record (PHR) context, for exchanging pregnancy data. Functional specification of this use case is described in the [[Gebz:V3.2_Ontwerpen#Use_case:_Client_vraagt_via_PGO_Integrale_Zwangerschapskaart_op_.28MedMij_0.1.29|functional design]] and follows the principles of the general | + | This Implementation Guide (IG) is a technical representation of the This is a patient's use case, in a personal health record (PHR) context, for exchanging pregnancy data. Functional specification of this use case is described in the [[Gebz:V3.2_Ontwerpen#Use_case:_Client_vraagt_via_PGO_Integrale_Zwangerschapskaart_op_.28MedMij_0.1.29|functional design]] and follows the principles of the general [[MedMij:V2020.01/FHIR_IG#Use_case_overarching_principles|use case overarching principles]]. |
+ | |||
+ | Technical details of the FHIR resources and structure definitions described in this IG can be found in the overarching IG of the information standard [[Gebz:V1.1_FHIR_IG|birthcare]] and the [https://simplifier.net/geboortezorg-stu3 Simplifier Geboortezorg STU3 project]. | ||
=Actors involved= | =Actors involved= |
Versie van 4 nov 2022 09:30
1 Introduction
This page describes the process of collecting pregnancy data in a patient's personal health record (PHR). The process is initiated by the patient (pregnant woman).
This Implementation Guide (IG) is a technical representation of the This is a patient's use case, in a personal health record (PHR) context, for exchanging pregnancy data. Functional specification of this use case is described in the functional design and follows the principles of the general use case overarching principles.
Technical details of the FHIR resources and structure definitions described in this IG can be found in the overarching IG of the information standard birthcare and the Simplifier Geboortezorg STU3 project.
2 Actors involved
The table shows the relevant actors, systems and FHIR CapabilityStatements. The CapabilityStatements demonstrate the minimum conformance requirements for the described use cases.
Actors | Systems | FHIR CapabilityStatements | |||
---|---|---|---|---|---|
Name | Description | Name | Description | Name | Description |
Patient | The user of a personal healthcare environment | PHR | Personal health record | FHIR client/server requirements | |
Healthcare provider | The user of a XIS | XIS | Healthcare information system |
3 Boundaries and relationships
This FHIR implementation guide assumes that the PHR system is able to make a connection with the XIS and create resources. It does not provide information on finding the right XIS nor does it provide information about security. These infrastructure and interface specifications are described in the 'MedMij Afsprakenstelsel'.
The Integral Pregnancy Card (gegevensdienst Integrale Zwangerschapskaart) has overlap with other standards such as the BgZ (basisgegevensset zorg), Medication Process, Vital Signs and Lab Results. The Integral Pregnancy Card uses the same HCIM based FHIR profiles for exchanging information as used in other standards extended with additional birthcare specific profiles. Most of these birthcare specific profiles are derived from the base HCIM FHIR profiles. For example, the bc-Woman is in fact a nl-core-patient with additional specifications for relating the pregnant woman to the (unborn) child.
4 Use case: send correction request on medical record
This use case covers the process of sending a correction request on an existing medical record. Other use cases might be added in the future.
4.1 Client sends PatientCorrectionsCommunication - PHR
Because sending a correction request can consist of (one or more) Communication resource(s) along with supporting resources, a transaction
interaction is used. This allows for creating a set of resources in a single interaction and makes it possible to include referenced secondary resources if needed. Querying resources on the server before submitting the transaction Bundle (for instance: to be able to reference a Patient resource on the server) is not part of this FHIR IG, nor is it required that a client is able to reuse previously requested resources from use cases outside this IG.
A transaction
interaction is performed by an HTTP POST command as shown:
POST [base]
The body of the POST submission is a Bundle with Bundle.type
=transaction. Each entry carries request details (Bundle.entry.request
) that provides the HTTP details of the action in order to inform the system processing the transaction of what to do for the entry. (Note: Bundle.request
is optional in FHIR, but SHALL be present, even for the resources which aren't Communications. See the overarching principles for more information.)
In order for the server to return each created resource in its entire form, the client SHOULD include the following HTTP Prefer header: Prefer: return=representation
.
The resources included in the bundle SHALL conform to the profiles listed in the table below.
Examples:
Bundle containing one Communication resource |
---|
<Bundle xmlns="http://hl7.org/fhir">
<type value="transaction"/>
<entry>
<fullUrl value="urn:uuid:0bd97f28-a942-4cd4-a929-dd8391cbc83f"/>
<resource>
<Communication xmlns="http://hl7.org/fhir">
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/dwv-PatientCorrectionsCommunication"/>
</meta>
<identifier>
<system value="urn:oid:2.16.840.1.113883.2.4.3.11.999.130.1.40"/>
<value value="4c6a73b0-bf86-43f4-bd98-2eed52d7161e"/>
</identifier>
<status value="completed"/>
<category>
<coding>
<system value="https://hl7.org/fhir/uv/fhir-patient-correction/CodeSystem/PatientCorrectionCommunicationTypes"/>
<code value="medRecCxReq"/>
<display value="Correction request by the Patient or RelatedPerson"/>
</coding>
</category>
<subject>
<reference value="Patient/..."/>
...
</subject>
<topic>
<text value="Wijzigingsverzoek: telefoonnummer"/>
</topic>
<sent value="2022-03-29T09:41:00Z"/>
<recipient>
<reference value="Organization/..."/>
...
</recipient>
<sender>
<reference value="Patient/..."/>
...
</sender>
<payload>
<contentString value="Het telefoonnummer van mijn eerste contactpersoon klopt niet. Jaap Stiekema heeft het nummer 06-12345678."/>
</payload>
</Communication>
</resource>
<request>
<method value="POST"/>
<url value="Communication"/>
</request>
</entry>
</Bundle>
|
Bundle containing multiple Communication resources and secondary resources |
---|
<Bundle xmlns="http://hl7.org/fhir">
<type value="transaction"/>
<entry>
<fullUrl value="urn:uuid:f8384e4e-6549-492a-b82a-b8f6101876b3"/>
<resource>
<Communication xmlns="http://hl7.org/fhir">
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/dwv-PatientCorrectionsCommunication"/>
</meta>
<identifier>
<system value="urn:oid:2.16.840.1.113883.2.4.3.11.999.130.1.40"/>
<value value="0287d8e7-d47b-4465-9cff-fab15bb3dfd2"/>
</identifier>
<status value="completed"/>
<category>
<coding>
<system value="https://hl7.org/fhir/uv/fhir-patient-correction/CodeSystem/PatientCorrectionCommunicationTypes"/>
<code value="medRecCxReq"/>
<display value="Correction request by the Patient or RelatedPerson"/>
</coding>
</category>
<subject>
<reference value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<type value="Patient"/>
<display value="Willemijn Wijziger"/>
</subject>
<topic>
<text value="Allergie niet juist"/>
</topic>
<sent value="2022-03-29T09:41:00Z"/>
<recipient>
<reference value="urn:uuid:a846de6b-a709-42e8-9a49-eaa359e666a5"/>
<type value="Organization"/>
<display value="Erasmus Medisch Centrum"/>
</recipient>
<sender>
<reference value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<type value="Patient"/>
<display value="Willemijn Wijziger"/>
</sender>
<payload>
<contentString value="In mijn dossier staat dat ik allergisch ben voor bijengif, dit is niet juist. Kunt u dit verwijderen?"/>
</payload>
</Communication>
</resource>
<request>
<method value="POST"/>
<url value="Communication"/>
</request>
</entry>
<entry>
<fullUrl value="urn:uuid:6c2f1861-76bb-48fb-8a76-a80adfd2243f"/>
<resource>
<Communication xmlns="http://hl7.org/fhir">
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/dwv-PatientCorrectionsCommunication"/>
</meta>
<identifier>
<system value="urn:oid:2.16.840.1.113883.2.4.3.11.999.130.1.40"/>
<value value="7c9e1076-4e13-4010-a166-7ca3fe6618fc"/>
</identifier>
<status value="completed"/>
<category>
<coding>
<system value="https://hl7.org/fhir/uv/fhir-patient-correction/CodeSystem/PatientCorrectionCommunicationTypes"/>
<code value="medRecCxReq"/>
<display value="Correction request by the Patient or RelatedPerson"/>
</coding>
</category>
<subject>
<reference value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<type value="Patient"/>
<display value="Willemijn Wijziger"/>
</subject>
<topic>
<text value="Mijn gewicht is fout"/>
</topic>
<sent value="2021-03-29T09:41:00Z"/>
<recipient>
<reference value="urn:uuid:a846de6b-a709-42e8-9a49-eaa359e666a5"/>
<type value="Organization"/>
<display value="Erasmus Medisch Centrum"/>
</recipient>
<sender>
<reference value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<type value="Patient"/>
<display value="Willemijn Wijziger"/>
</sender>
<payload>
<contentString value="Op 14 februari 2022 woog ik 72 kg en er staat dat ik 74 kg weeg, dit is fout."/>
</payload>
</Communication>
</resource>
<request>
<method value="POST"/>
<url value="Communication"/>
</request>
</entry>
<entry>
<fullUrl value="urn:uuid:287837d4-ae09-49b8-a4dd-07efac1e81fa"/>
<resource>
<Communication xmlns="http://hl7.org/fhir">
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/dwv-PatientCorrectionsCommunication"/>
</meta>
<identifier>
<system value="urn:oid:2.16.840.1.113883.2.4.3.11.999.130.1.40"/>
<value value="3bb12830-8b93-4484-a595-97653a68f17c"/>
</identifier>
<status value="completed"/>
<category>
<coding>
<system value="https://hl7.org/fhir/uv/fhir-patient-correction/CodeSystem/PatientCorrectionCommunicationTypes"/>
<code value="medRecCxReq"/>
<display value="Correction request by the Patient or RelatedPerson"/>
</coding>
</category>
<subject>
<reference value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<type value="Patient"/>
<display value="Willemijn Wijziger"/>
</subject>
<topic>
<text value="Tijdelijk adres aanpassen"/>
</topic>
<sent value="2021-03-29T09:41:00Z"/>
<recipient>
<reference value="urn:uuid:a846de6b-a709-42e8-9a49-eaa359e666a5"/>
<type value="Organization"/>
<display value="Erasmus Medisch Centrum"/>
</recipient>
<sender>
<reference value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<type value="Patient"/>
<display value="Willemijn Wijziger"/>
</sender>
<payload>
<contentString value="Wij gaan tijdelijk op een ander adres wonen in verband met een verbouwing, kunt u mijn adres aanpassen naar: Knolweg 1000, 9999 XA Stitswerd."/>
</payload>
</Communication>
</resource>
<request>
<method value="POST"/>
<url value="Communication"/>
</request>
</entry>
<entry>
<fullUrl value="urn:uuid:c4e8dce5-0f69-42b2-b10b-f480cc377cd2"/>
<resource>
<Patient xmlns="http://hl7.org/fhir">
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/nl-core-Patient"/>
</meta>
<identifier>
<system value="urn:oid:2.16.840.1.113883.2.4.3.11.999.130.1.135"/>
<value value="123456789"/>
</identifier>
<name>
<use value="official" />
<text value="Willemijn Wijziger" />
<family value="Wijziger">
<extension url="http://hl7.org/fhir/StructureDefinition/humanname-own-name">
<valueString value="Wijziger" />
</extension>
</family>
<given value="Willemijn">
<extension url="http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier">
<valueCode value="BR" />
</extension>
</given>
</name>
</Patient>
</resource>
<request>
<method value="POST"/>
<url value="Patient"/>
</request>
</entry>
<entry>
<fullUrl value="urn:uuid:a846de6b-a709-42e8-9a49-eaa359e666a5"/>
<resource>
<Organization xmlns="http://hl7.org/fhir">
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/nl-core-HealthcareProvider-Organization"/>
</meta>
<identifier>
<system value="http://fhir.nl/fhir/NamingSystem/agb-z"/>
<value value="06020806"/>
</identifier>
<name value="Erasmus Medisch Centrum"/>
</Organization>
</resource>
<request>
<method value="POST"/>
<url value="Organization"/>
</request>
</entry>
</Bundle>
|
4.1.1 Guidance on resource contents
On top of the guidance in the functional design and the descriptions in the relevant FHIR profiles, the list below provides direction on how to use the elements in the resources used in this information standard.
Examples of the resources below can be found on Simplifier.
4.1.1.1 PatientCorrectionsCommunication
Every instance of PatientCorrectionsCommunication (Communication) SHALL contain at least the following elements upon initial creation:
identifier
: unique identifier for the purpose of data deduplicationstatus
: with fixed value completedcategory
: with fixed value medRecCxReqsubject
: the patient that the correction request applies totopic
: subject line, like the subject of an emailsent
: the date and time the correction request was sentrecipient
: the recipient of the correction request, healthcare provider and optionally (if known) the health professionalsender
: a reference to the sender of the correction requestpayload
: the actual correction request message as a string
4.1.1.2 Patient
The Patient instance SHOULD contain at least the following elements:
name
: the patient's birth name
It is encouraged to include an internal hospital patient number using the identifier
element, if known.
4.1.1.3 HealthcareProvider
The HealthcareProvider (Organization) instance SHOULD contain at least the following elements:
name
: the name of the healthcare provider, in MedMij context this name can be derived from the entry in the ZAL (healthcare providers list, Dutch: Zorgaanbiederslijst)
It is encouraged to include the organization's unique identifier like AGB or URA using the identifier
element, if known.
4.1.1.4 HealthProfessional
The HealthProfessional (Practitioner/PractitionerRole) instance SHOULD contain at least the following elements:
name
: the name of the practitioner
It is encouraged to include a practitioner's unique identifier like AGB or BIG using the identifier
element, if known.
4.2 Server response - XIS
The server returns an HTTP Status code appropriate to the processing outcome and returns a Bundle, with Bundle.type
=transaction-response, that contains one entry for each entry in the request, in the same order, with the outcome of processing the entry. Because the client request contains the HTTP Prefer header Prefer: return=representation
, the server SHOULD return a full version of all created resources.
It is conceivable that future versions of this information standard will provide more detailed information on further processing and workflow using the Task resource, thus follow the international HL7 Patient Corrections IG. At this point in time, it is not expected that a XIS spawns a Task and creates a reference to this Task in |
Example:
<Bundle xmlns="http://hl7.org/fhir">
<type value="transaction-response"/>
<entry>
<resource>
<Communication xmlns="http://hl7.org/fhir">
<id value="a9f7a826-fd3f-444a-9457-0d444ee7a966"/><!-- ID assigned by the XIS after receiving this resource-->
<meta>
<profile value="http://nictiz.nl/fhir/StructureDefinition/dwv-PatientCorrectionsCommunication"/>
</meta>
<identifier>
<system value="urn:oid:2.16.840.1.113883.2.4.3.11.999.130.1.40"/>
<value value="4c6a73b0-bf86-43f4-bd98-2eed52d7161e"/><!-- Identifier assigned by the PHR upon initial POST -->
</identifier>
...
</Communication>
</resource>
...
</Bundle>
A server SHOULD provide additional information (an acknowledgment of receipt) on the received correction request(s) by adding an OperationOutcome to the response with OperationOutcome.severity
=information, OperationOutcome.code
=informational and the actual message on the OperationOutcome.details.text
element.
This IG does not cover the actual contents of the text in the OperationOutcome, as this text can be subject to agreements made in programmes like MedMij, VIPP 5 or between healthcare providers. This also applies to support for multiple languages (localization). |
Example:
<OperationOutcome xmlns="http://hl7.org/fhir">
<language value="nl-NL"/>
<issue>
<severity value="information"/>
<code value="informational"/>
<details>
<text value="Uw wijzigingsverzoek is ontvangen, neem voor meer informatie contact op met uw zorgaanbieder. Bij levensbedreigende situaties belt u 112."/>
</details>
</issue>
</OperationOutcome>
4.3 RESTful interactions
┌───┐ ┌───┐ │PHR│ │XIS│ └─┬─┘ └─┬─┘ ╔═══════════════════════════════╗│ │ ║Send a new correction request ░║│ │ ╚═══════════════════════════════╝│ │ │ Create (POST) Bundle containing Communication(s) │ │────────────────────────────────────────────────────────────────>│ │ │ │Return Bundle with created Communication(s) and OperationOutcome │ │<─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ │ ┌─┴─┐ ┌─┴─┐ │PHR│ │XIS│ └───┘ └───┘
5 FHIR profiles
MedMij uses the FHIR Packaging mechanism. This conveniently bundles all profiles, terminology, example material and other conformance resources you need into a single archive, which can be downloaded or installed using the appropriate FHIR tooling. This version of the information standard uses the following packages:
Note: packages use Semantic Versioning. Other versions can be used at will as long as they have the same major.minor number or a minor number higher than the stated version. |
Profile name | FHIR Resource | HCIM EN | Canonical URL |
---|---|---|---|
dwv-PatientCorrectionsCommunication | Communication | n/a | http://nictiz.nl/fhir/StructureDefinition/dwv-PatientCorrectionsCommunication |
nl core Patient | Patient | Patient | http://nictiz.nl/fhir/StructureDefinition/nl-core-Patient |
nl core HealthcareProvider | Organization | HealthcareProvider | http://nictiz.nl/fhir/StructureDefinition/nl-core-HealthcareProvider-Organization |
nl core HealthProfessional Practitioner | Practitioner | HealthProfessional | http://nictiz.nl/fhir/StructureDefinition/nl-core-HealthProfessional-Practitioner |
nl core HealthProfessional PractitionerRole | PractitionerRole | http://nictiz.nl/fhir/StructureDefinition/nl-core-HealthProfessional-PractitionerRole |
6 med_mij_01_beschikbaarstellen_integrale_zwangerschapskaart
Based on ART-DECOR transaction version: 2021-04-06T15:01:01
PWD 3.2 to FHIR | ||||||||||||
Type | # | Concept | Card | Profile | Mapping | Search URL | ||||||
1313 | Administratief | 1 .. 1 | ||||||||||
750 | Contact | 0 .. * | bc-Encounter | Encounter |
| |||||||
751 | ContactType | 1 .. 1 | bc-Encounter | Encounter.class | ||||||||
3690 | ContactSoort | 0 .. 1 | bc-Encounter | Encounter.type | ||||||||
752 | ContactMet | 0 .. 1 | bc-Encounter | Encounter.participant.individual |
| |||||||
1868 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner.participant.individual |
| |||||||
754 | Locatie | 0 .. 1 | bc-Encounter | Encounter.serviceProvider |
| |||||||
1881 | Zorgaanbieder | 0 .. 1 | nl-core-organization | Organization |
| |||||||
756 | BeginDatumTijd | 1 .. 1 | bc-Encounter | Encounter.period.start | ||||||||
757 | EindDatumTijd | 1 .. 1 | bc-Encounter | Encounter.period.start | ||||||||
758 | RedenContact | 1 .. * | bc-Encounter | Encounter.diagnosis |
| |||||||
759 | Probleem | 0 .. 1 | zib-Problem | Condition |
| |||||||
1984 | Vrouw/ moeder | 0 .. 1 | zib-Problem | Condition.subject | ||||||||
3828 | Probleem (Algemene anamnese) | 0 .. 1 | zib-Problem | Condition | ||||||||
3831 | Probleem (Psychiatrie) | 0 .. 1 | zib-Problem | Condition | ||||||||
3829 | Probleem (Sociale problemen) | 0 .. 1 | zib-Problem | Condition | ||||||||
3832 | Probleem (Misbruik/ Geweld) | 0 .. 1 | zib-Problem | Condition | ||||||||
3830 | Probleem (Zwangerschap) | 0 .. 1 | bc-DisorderOfPregnancy | Condition | ||||||||
1928 | Probleem (Maternaal) | 0 .. 1 | bc-DisorderPostPartum | Condition | ||||||||
3833 | Probleem (Postpartum complicatie) | 0 .. 1 | bc-DisorderPostPartum | Condition | ||||||||
1985 | Kind | 0 .. 1 | bc-DisorderOfChild | Condition.subject | ||||||||
1981 | Probleem (Kindspecifieke maternale problemen) | 0 .. 1 | bc-DisorderOfChild | Condition.code |
| |||||||
1983 | Probleem (ProblematiekKind) | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8781 | Probleem (Geboortetrauma) | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8782 | Probleem (Congenitale aandoeningen) | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8783 | Probleem_Huid | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8784 | Probleem_Hoofd/Hals | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8785 | Probleem_Thorax | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8786 | Probleem_Abdomen | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8787 | Probleem_Rug | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8788 | Probleem_Extremiteiten | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8789 | Probleem_Genitalia | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
8790 | Probleem_Neurologie | 0 .. 1 | bc-DisorderOfChild | Condition | ||||||||
10682 | Probleem (OpnameIndicatie_LNR) | 0 .. 1 | nvt | |||||||||
10683 | ProbleemAnatomischeLocatie | 0 .. 1 | bc-DisorderOfChild | Condition.bodySite | ||||||||
10684 | ProbleemLateraliteit | 0 .. 1 | bc-DisorderOfChild | Condition.bodySite.extension:Laterality.valueCodeableConcept:valueCodeableConcept | ||||||||
10685 | ProbleemType | 0 .. 1 | bc-DisorderOfChild | Condition.category | ||||||||
10686 | ProbleemNaam | 0 .. 1 | bc-DisorderOfChild | Condition.code | ||||||||
10687 | ProbleemBeginDatum | 0 .. 1 | bc-DisorderOfChild | Condition.onsetDateTime:onsetDateTime | ||||||||
10688 | ProbleemEindDatum | 0 .. 1 | bc-DisorderOfChild | Condition.abatementDateTime:abatementDateTime | ||||||||
10689 | ProbleemStatus | 0 .. 1 | bc-DisorderOfChild | Condition.clinicalStatus | ||||||||
10690 | VerificatieStatus | 0 .. 1 | bc-DisorderOfChild | Condition.verificationStatus | ||||||||
10691 | Toelichting | 0 .. 1 | bc-DisorderOfChild | Condition.note | ||||||||
769 | Verrichting | 0 .. 1 | nl-core-procedure | Procedure | ||||||||
1986 | Vrouw/ moeder | 0 .. 1 | nl-core-procedure | Procedure.subject | ||||||||
3834 | Verrichting (Algemene anamnese) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
3835 | Verrichting (Zwangerschap) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
1970 | Verrichting (Maternaal) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
3836 | Verrichting (Onderzoek) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
3837 | Verrichting (Postpartum complicatie) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
1987 | Kind | 0 .. 1 | bc-Birth | Procedure.subject | ||||||||
1982 | Verrichting (Kindspecifieke maternale verrichtingen) | 0 .. 1 | bc-ObstetricProcedure | Procedure |
| |||||||
8791 | Verrichting (Ondersteuning opvang) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
8792 | Chirurgische ingrepen (Verrichting) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
8793 | Verrichting (Problematiek kind) | 0 .. 1 | bc-ObstetricProcedure | Procedure | ||||||||
763 | AfwijkendeUitslag | 0 .. 1 | bc-Encounter | Encounter.reason.text | ||||||||
8780 | Toelichting reden contact | 0 .. 1 | bc-Encounter | Encounter.reason.text | ||||||||
764 | Herkomst | 0 .. 1 | bc-Encounter | Encounter.hospitalization.admitSource | ||||||||
765 | Bestemming | 0 .. 1 | bc-Encounter | Encounter.hospitalization.dischargeDisposition | ||||||||
675 | Patient | 1 .. * | nl-core-patient | Patient* |
| |||||||
3197 | Naamgegevens | 1 .. 1 | nl-core-patient | Patient.name | ||||||||
3198 | Voornamen | 0 .. 1 | nl-core-patient | Patient.name.given | ||||||||
3199 | Initialen | 0 .. 1 | nl-core-patient | Patient.name.given | ||||||||
3200 | Roepnaam | 0 .. 1 | nl-core-patient | Patient.name.given | ||||||||
3201 | Naamgebruik | 0 .. 1 | nl-core-patient | Patient.name.use | ||||||||
3202 | Geslachtsnaam | 0 .. 1 | nl-core-patient | Patient.name.family:humannameOwnName | ||||||||
3203 | Voorvoegsels | 0 .. 1 | nl-core-patient | Patient.name.family:humannameOwnPrefix | ||||||||
3204 | Achternaam | 1 .. 1 | nl-core-patient | Patient.name.family:humannameOwnName | ||||||||
3205 | GeslachtsnaamPartner | 0 .. 1 | nl-core-patient | Patient.name.family:humannamePartnerName | ||||||||
3206 | VoorvoegselsPartner | 0 .. 1 | nl-core-patient | Patient.name.family:humannamePartnerPrefix | ||||||||
3207 | AchternaamPartner | 1 .. 1 | nl-core-patient | Patient.name.family:humannamePartnerName | ||||||||
3208 | Adresgegevens | 0 .. * | nl-core-patient | Patient.address | ||||||||
3209 | Straat | 0 .. 1 | nl-core-patient | Patient.address.line.streetName | ||||||||
3210 | Huisnummer | 0 .. 1 | nl-core-patient | Patient.address.line.houseNumber | ||||||||
3211 | Huisnummerletter | 0 .. 1 | nl-core-patient | Patient.address.line.buildingNumbersuffix | ||||||||
3212 | Huisnummertoevoeging | 0 .. 1 | nl-core-patient | Patient.address.line.additionalLocator | ||||||||
3213 | AanduidingBijNummer | 0 .. 1 | nl-core-patient | Patient.address.line.additionalLocator | ||||||||
3214 | Postcode | 0 .. 1 | nl-core-patient | Patient.address.postalCode | ||||||||
3215 | Woonplaats | 0 .. 1 | nl-core-patient | Patient.address.city | ||||||||
3216 | Gemeente | 0 .. 1 | nl-core-patient | Patient.address.district | ||||||||
3217 | Land | 0 .. 1 | nl-core-patient | Patient.address.country | ||||||||
3218 | AdditioneleInformatie | 0 .. 1 | nl-core-patient | Patient.address | ||||||||
3219 | AdresSoort | 0 .. 1 | nl-core-patient | Patient.address.use | ||||||||
3220 | Contactgegevens | 0 .. 1 | nl-core-patient | Patient.telecom | ||||||||
3221 | Telefoonnummers | 0 .. * | nl-core-patient | Patient.telecom.value | ||||||||
3222 | Telefoonnummer | 0 .. 1 | nl-core-patient | Patient.telecom.value | ||||||||
3223 | TelecomType | 0 .. 1 | nl-core-patient | Patient.telecom:extension:TelecomType | ||||||||
3224 | NummerSoort | 0 .. 1 | nl-core-patient | Patient.telecom.use | ||||||||
3225 | EmailAdressen | 0 .. * | nl-core-patient | Patient.telecom.value | ||||||||
3226 | EmailAdres | 0 .. 1 | nl-core-patient | Patient.telecom.value | ||||||||
3227 | EmailSoort | 0 .. 1 | nl-core-patient | Patient.telecom.use | ||||||||
682 | Identificatienummer | 0 .. * | nl-core-patient | Patient.identifier | ||||||||
9861 | GeborenIndicator | 0 .. 1 | bc-child | Patient.extension.born | ||||||||
683 | Geboortedatum | 0 .. 1 | nl-core-patient | Patient.birthDate | ||||||||
684 | Geslacht (administratief) | 1 .. 1 | nl-core-patient | Patient.gender | ||||||||
10776 | Geslacht (identiteit) | 0 .. 1 | bc-Woman | Patient.extension:genderIdentity | ||||||||
685 | MeerlingIndicator | 0 .. 1 | nl-core-patient | Patient.multipleBirthBoolean | ||||||||
3358 | Rangnummer | 0 .. 1 | nl-core-patient | Patient.multipleInteger | ||||||||
686 | OverlijdensIndicator | 0 .. 1 | nl-core-patient | Patient.deceasedBoolean | ||||||||
687 | DatumOverlijden | 0 .. 1 | nl-core-patient | Patient.deceasedDateTime | ||||||||
956 | Zorgaanbieder | 1 .. * | nl-core-organization | Organization |
| |||||||
957 | ZorgaanbiederIdentificatienummer | 1 .. * | nl-core-organization | Organization.identifier | ||||||||
958 | OrganisatieNaam | 1 .. 1 | nl-core-organization | Organization.name | ||||||||
3236 | Adresgegevens | 0 .. 1 | nl-core-organization | Organization.address | ||||||||
3237 | Straat | 0 .. 1 | nl-core-organization | Organization.address.line.streetName | ||||||||
3238 | Huisnummer | 0 .. 1 | nl-core-organization | Organization.address.line.houseNumber | ||||||||
3239 | Huisnummerletter | 0 .. 1 | nl-core-organization | Organization.address.line:extension:buildingNumbersuffix | ||||||||
3240 | Huisnummertoevoeging | 0 .. 1 | nl-core-organization | Organization.address.line:extension:buildingNumbersuffix | ||||||||
3241 | AanduidingBijNummer | 0 .. 1 | nl-core-organization | Organization.address.line:extension:additionalLocator | ||||||||
3242 | Postcode | 0 .. 1 | nl-core-organization | Organization.address.postalCode | ||||||||
3243 | Woonplaats | 0 .. 1 | nl-core-organization | Organization.address.city | ||||||||
3244 | Gemeente | 0 .. 1 | nl-core-organization | Organization.address.district | ||||||||
3245 | Land | 0 .. 1 | nl-core-organization | Organization.address.country | ||||||||
3246 | AdditioneleInformatie | 0 .. 1 | nl-core-organization | Organization.address.line.extension | ||||||||
3247 | AdresSoort | 0 .. 1 | nl-core-organization | Organization.address.use/.type (via conceptMap) | ||||||||
965 | OrganisatieType | 1 .. 1 | nl-core-organization | Organization.type | ||||||||
978 | Zorgverlener | 1 .. * | nl-core-practitioner | Practitioner |
| |||||||
979 | ZorgverlenerIdentificatienummer | 1 .. * | nl-core-practitioner | Practitioner.identifier | ||||||||
3248 | Naamgegevens | 1 .. 1 | nl-core-practitioner | Practitioner.name | ||||||||
3249 | Voornamen | 0 .. 1 | nl-core-practitioner | Practitioner.name.given | ||||||||
3250 | Initialen | 0 .. 1 | nl-core-practitioner | Practitioner.name.given | ||||||||
3251 | Roepnaam | 0 .. 1 | nl-core-practitioner | Practitioner.name.given | ||||||||
3252 | Naamgebruik | 0 .. 1 | nl-core-practitioner | Practitioner.name:extension:humannameAssemblyOrder | ||||||||
3253 | Geslachtsnaam | 1 .. 1 | nl-core-practitioner | Practitioner.name.family:extension:humannameOwnName | ||||||||
3254 | Voorvoegsels | 0 .. 1 | nl-core-practitioner | Practitioner.name.family:extension:humannameOwnPrefix | ||||||||
3255 | Achternaam | 1 .. 1 | nl-core-practitioner | Practitioner.name.family:extension:humanNameOwnName | ||||||||
3256 | GeslachtsnaamPartner | 0 .. 1 | nl-core-practitioner | Practitioner.name.family:extension:humannamePartnerName | ||||||||
3257 | VoorvoegselsPartner | 0 .. 1 | nl-core-practitioner | Practitioner.name.family:extension:humannamePartnerPrefix | ||||||||
3258 | AchternaamPartner | 0 .. 1 | nl-core-practitioner | Practitioner.name.family:extension:humannamePartnerName | ||||||||
2219 | Specialisme | 1 .. 1 | nl-core-practitionerrole | PractitionerRole.specialty | ||||||||
3271 | Contactgegevens | 0 .. 1 | nl-core-practitioner | Practitioner.telecom | ||||||||
3272 | Telefoonnummers | 0 .. * | nl-core-practitioner | Practitioner.telecom.value | ||||||||
3273 | Telefoonnummer | 1 .. 1 | nl-core-practitioner | Practitioner.telecom.value | ||||||||
3274 | TelecomType | 1 .. 1 | nl-core-practitioner | Practitioner.telecom:extension:TelecomType | ||||||||
1678 | Zorgaanbieder | 0 .. 1 | nl-core-organization | Organization | ||||||||
989 | ZorgverlenersRol | 0 .. 1 | nl-core-practitionerrole | PractitionerRole | ||||||||
1314 | Zorgverlening | 1 .. * | nvt | |||||||||
3399 | ZorgEpisode | 1 .. * | bc-MaternalRecord | EpisodeOfCare |
| |||||||
3400 | BeginDatum | 0 .. 1 | bc-MaternalRecord | EpisodeOfCare.period.start | ||||||||
3401 | EindDatum | 0 .. 1 | bc-MaternalRecord | EpisodeOfCare.period.end | ||||||||
674 | Vrouw | 1 .. 1 | bc-Woman | Patient |
| |||||||
1713 | Demografische gegevens | 1 .. 1 | bc-Woman | Patient | ||||||||
1434 | Patient | 1 .. 1 | bc-Woman | Patient | ||||||||
1127 | Bloedonderzoek | 0 .. * | zib-LaboratoryTestResult-Observation | Observation | ||||||||
1139 | LaboratoriumTest_Bloedgroep | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
1151 | LaboratoriumTest_Rhesus D | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
1163 | LaboratoriumTest_Rhesus c | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
25 | Zwangerschapsgegevens | 1 .. 1 | bc-MaternalRecord | EpisodeOfCare |
| |||||||
1699 | Coördinerend zorgverlener | 1 .. 1 | bc-MaternalRecord | EpisodeOfCare.careManager | ||||||||
9662 | Zorgverlener | 1 .. 1 | nl-core-practitioner | Practitioner | ||||||||
3341 | Zwangerschap | 1 .. 1 | zib-Pregnancy | Condition |
| |||||||
3342 | Zwangerschapsduur | 1 .. 1 | zib-Pregnancy-PregnancyDuration | Observation.value[x]:valueQuantity | ||||||||
3343 | Pariteit | 1 .. 1 | zib-Pregnancy-Parity | Observation.value[x]:valueQuantity |
| |||||||
3344 | Graviditeit | 1 .. 1 | zib-Pregnancy-Gravidity | Observation.value[x]:valueQuantity |
| |||||||
3345 | Toelichting | 0 .. 1 | zib-Pregnancy | Condition.note | ||||||||
3346 | ATermeDatumItems | 1 .. * | bc-PregnancyObservation | Observation |
| |||||||
3347 | ATermeDatum | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueDateTime | ||||||||
3348 | BepalingsMethode | 1 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
3349 | DatumBepaling | 1 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
3350 | DatumLaatsteMenstruatie | 1 .. 1 | zib-Pregnancy-DateLastMenstruation | Observation.value[x]:valueDateTime | ||||||||
1729 | Datum einde zwangerschap | 0 .. * | bc-PregnancyObservation | Observation.value[x]:valueDateTime | ||||||||
2220 | Definitieve à terme datum (Observatie) | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
2221 | Definitieve à terme DatumTijd | 0 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
2223 | Definitieve à terme Waarde | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueDateTime | ||||||||
2224 | Definitieve à terme Methode | 0 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
2225 | Toelichting | 0 .. 1 | bc-PregnancyObservation | Observation.comment | ||||||||
1837 | Aantal foetussen (Observatie) | 1 .. 1 | bc-PregnancyObservation | Observation | ||||||||
1838 | AantalFoetussenDatumTijd | 0 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
1840 | AantalFoetussenWaarde | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueQuantity | ||||||||
1841 | ObservatieMethode | 0 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
1843 | Toelichting | 0 .. 1 | bc-PregnancyObservation | Observation.comment | ||||||||
1711 | Meerling zwangerschap (Observatie) | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
1825 | MeerlingZwangerschapDatumTijd | 0 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
2231 | TyperingGemellizwangerschapWaarde | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueCodeableConcept | ||||||||
1845 | Aantal foetussen (Observatie) | 1 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
1833 | ObservatieMethode | 0 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
1826 | Toelichting | 0 .. 1 | bc-PregnancyObservation | Observation.comment | ||||||||
1734 | Aantal levende kinderen (Observatie) | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
1735 | AantalLevendeKinderenDatumTijd | 0 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
1740 | AantalLevendeKinderenWaarde | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueQuantity | ||||||||
1736 | ObservatieMethode | 0 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
1738 | Toelichting | 0 .. 1 | bc-PregnancyObservation | Observation.comment | ||||||||
1817 | Fetal loss (Observatie) | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
1818 | FetalLossDatumTijd | 0 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
1820 | FetalLossWaarde | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueQuantity | ||||||||
1821 | ObservatieMethode | 0 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
1824 | Toelichting | 0 .. 1 | bc-PregnancyObservation | Observation.comment | ||||||||
1742 | Foliumzuurgebruik (Observatie) | 0 .. 1 | bc-MaternalObservation | Observation |
| |||||||
1743 | FoliumzuurgebruikDatumTijd | 0 .. 1 | bc-MaternalObservation | Observation.effective[x]:effectiveDateTime | ||||||||
1745 | FoliumzuurgebruikWaarde | 1 .. 1 | bc-MaternalObservation | Observation.value[x]:valueCodeableConcept | ||||||||
1746 | ObservatieMethode | 0 .. 1 | bc-MaternalObservation | Observation.method | ||||||||
1749 | Toelichting | 0 .. 1 | bc-MaternalObservation | Observation.comment | ||||||||
111 | Prenatale controle | 0 .. * | bc-Encounter | Encounter |
| |||||||
10520 | Contact | 0 .. 1 | bc-Encounter | Encounter | ||||||||
7025 | Zwangerschapsduur | 0 .. 1 | zib-Pregnancy-PregnancyDuration | Observation.value[x]:valueQuantity | ||||||||
2134 | Leven voelen (Observatie) | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
2135 | LevenVoelenDatumTijd | 1 .. 1 | bc-PregnancyObservation | Observation.effective[x]:effectiveDateTime | ||||||||
2137 | LevenVoelenWaarde | 1 .. 1 | bc-PregnancyObservation | Observation.value[x]:valueCodeableConcept | ||||||||
2138 | ObservatieMethode | 0 .. 1 | bc-PregnancyObservation | Observation.method | ||||||||
2141 | Toelichting | 0 .. 1 | bc-PregnancyObservation | Observation.comment | ||||||||
1078 | Lichaamsgewicht | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
1072 | Bloeddruk | 0 .. 1 | bc-PregnancyObservation | Observation |
| |||||||
121 | AlcoholGebruik | 0 .. 1 | zib-AlcoholUse | Observation |
| |||||||
122 | Toelichting | 0 .. 1 | zib-AlcoholUse | Observation.comment | ||||||||
123 | AlcoholGebruikStatus | 0 .. 1 | zib-AlcoholUse | Observation.value[x]:valueCodeableConcept | ||||||||
124 | WaarnemingGebruik | 0 .. 1 | zib-AlcoholUse | Observation.effectivePeriod | ||||||||
125 | StartDatum | 0 .. 1 | zib-AlcoholUse | Observation.effective[x]:effectivePeriod.start | ||||||||
126 | StopDatum | 0 .. 1 | zib-AlcoholUse | Observation.effective[x]:effectivePeriod.end | ||||||||
127 | Hoeveelheid | 0 .. 1 | zib-AlcoholUse | Observation.component:amount.valueQuantity | ||||||||
112 | DrugsGebruik | 0 .. * | zib-DrugUse | Observation |
| |||||||
117 | Toelichting | 0 .. 1 | zib-DrugUse | Observation.comment | ||||||||
119 | DrugsGebruikStatus | 0 .. 1 | zib-DrugUse | Observation.value[x]:valueCodeableConcept | ||||||||
118 | DrugsOfGeneesmiddelSoort | 0 .. 1 | zib-DrugUse | Observation.component:DrugOrMedicationType.valueCodeableConcept | ||||||||
120 | Toedieningsweg | 0 .. 1 | zib-DrugUse | Observation.component:RouteOfAdministration.valueCodeableConcept | ||||||||
113 | WaarnemingGebruik | 0 .. 1 | zib-DrugUse | Observation.effectivePeriod | ||||||||
114 | StartDatum | 0 .. 1 | zib-DrugUse | Observation.effective[x]:effectivePeriod.start | ||||||||
115 | StopDatum | 0 .. 1 | zib-DrugUse | Observation.effective[x]:effectivePeriod.end | ||||||||
116 | Hoeveelheid | 0 .. 1 | zib-DrugUse | Observation.component:amount.valueQuantity | ||||||||
2243 | TabakGebruik | 0 .. * | zib-TobaccoUse | Observation |
| |||||||
2244 | Toelichting | 0 .. 1 | zib-TobaccoUse | Observation.comment | ||||||||
2246 | TabakGebruikStatus | 0 .. 1 | zib-TobaccoUse | Observation.value[x]:valueCodeableConcept | ||||||||
2245 | SoortTabakGebruik | 0 .. 1 | zib-TobaccoUse | Observation.component:TypeOfTobaccoUsed.valueCodeabelConcet | ||||||||
2247 | WaarnemingGebruik | 0 .. 1 | zib-TobaccoUse | Observation.effectivePeriod | ||||||||
2248 | StartDatum | 0 .. 1 | zib-TobaccoUse | Observation.effective[x]:effectivePeriod.start | ||||||||
2249 | StopDatum | 0 .. 1 | zib-TobaccoUse | Observation.effective[x]:effectivePeriod.end | ||||||||
2250 | Hoeveelheid | 0 .. 1 | zib-TobaccoUse | Observation.component:amount.valueQuantity | ||||||||
2251 | PackYears | 0 .. 1 | zib-TobaccoUse | Observation.component:PackYears.valueQuantity | ||||||||
1775 | Uitwendig onderzoek | 0 .. * | nvt | |||||||||
10521 | Bevindingen Moeder | 0 .. 1 | bc-MaternalObservation | Observation | ||||||||
3415 | Fundushoogte (Meting) | 0 .. 1 | bc-MaternalObservation | Observation | ||||||||
3417 | FundushoogteWaarde | 0 .. 1 | bc-MaternalObservation | Observation.value[x]:valueQuantity | ||||||||
3418 | MeetMethode | 0 .. 1 | bc-MaternalObservation | Observation.method | ||||||||
3421 | MeetDatumBeginTijd | 0 .. 1 | bc-MaternalObservation | Observation.effective[x]:effectivePeriod.start | ||||||||
3422 | MeetDatumEindTijd | 0 .. 1 | bc-MaternalObservation | Observation.effective[x]:effectivePeriod.end | ||||||||
3423 | Toelichting | 0 .. 1 | bc-MaternalObservation | Observation.comment | ||||||||
3424 | AnatomischeLocatieMeting | 0 .. 1 | bc-MaternalObservation | Observation.bodySite | ||||||||
3425 | Locatie | 0 .. 1 | bc-MaternalObservation | Observation.bodySite | ||||||||
4048 | Fundusstand (Meting) | 0 .. 1 | bc-FetusObservation | Observation | ||||||||
4050 | FundusstandWaarde | 0 .. 1 | bc-FetusObservation | Observation.value[x]:valueCodeableConcept | ||||||||
4051 | MeetMethode | 0 .. 1 | bc-FetusObservation | Observation.method | ||||||||
4054 | MeetDatumBeginTijd | 0 .. 1 | bc-FetusObservation | Observation.effective[x]:effectivePeriod.start | ||||||||
4055 | MeetDatumEindTijd | 0 .. 1 | bc-FetusObservation | Observation.effective[x]:effectivePeriod.end | ||||||||
4056 | Toelichting | 0 .. 1 | bc-FetusObservation | Observation.comment | ||||||||
4057 | AnatomischeLocatieMeting | 0 .. 1 | bc-FetusObservation | Observation.bodySite | ||||||||
4058 | Locatie | 0 .. 1 | bc-FetusObservation | Observation.bodySite | ||||||||
10522 | Bevindingen Foetus | 0 .. * | bc-FetusObservation | Observation | ||||||||
4060 | LiggingFoetus (Meting) | 1 .. * | bc-FetusObservation | Observation | ||||||||
4062 | LiggingFoetusWaarde | 1 .. 1 | bc-FetusObservation | Observation.value[x]:valueCodeableConcept | ||||||||
4066 | MeetDatumBeginTijd | 1 .. 1 | bc-FetusObservation | Observation.effective[x]:effectivePeriod.start | ||||||||
4067 | MeetDatumEindTijd | 0 .. 1 | bc-FetusObservation | Observation.effective[x]:effectivePeriod.end | ||||||||
4069 | AnatomischeLocatieMeting | 1 .. 1 | bc-FetusObservation | Observation.bodySite | ||||||||
4070 | Locatie | 1 .. 1 | bc-FetusObservation | Observation.bodySite | ||||||||
4072 | IndalingFoetus(Meting) | 1 .. * | bc-FetusObservation | Observation | ||||||||
4074 | IndalingFoetusWaarde | 1 .. 1 | bc-FetusObservation | Observation.value[x]:valueCodeableConcept | ||||||||
4078 | MeetDatumBeginTijd | 1 .. 1 | bc-FetusObservation | Observation.effective[x]:effectivePeriod.start | ||||||||
4079 | MeetDatumEindTijd | 0 .. 1 | bc-FetusObservation | Observation.effective[x]:effectivePeriod.end | ||||||||
4081 | AnatomischeLocatieMeting | 1 .. 1 | bc-FetusObservation | Observation.bodySite | ||||||||
4082 | Locatie | 1 .. 1 | bc-FetusObservation | Observation.bodySite | ||||||||
1776 | Foetale hartslag (Hartfrequentie) | 0 .. * | bc-FetalHeartRate | Observation |
| |||||||
1778 | HartfrequentieDatumTijd | 0 .. 1 | bc-FetalHeartRate | Observation.effective[x]:effectiveDateTime | ||||||||
1777 | HartfrequentieWaarde | 1 .. 1 | bc-FetalHeartRate | Observation.value[x]:valueQuantity | ||||||||
1779 | HartslagMeetMethode | 0 .. 1 | bc-FetalHeartRate | Observation.method | ||||||||
1781 | HartslagRegelmatigheid | 1 .. 1 | bc-FetalHeartRate | Observation.component:heartRateRegularity.value[x]:valueCodeableConcept | ||||||||
1782 | InterpretatieFrequentie | 1 .. 1 | bc-FetalHeartRate | Observation.interpretation | ||||||||
1780 | Toelichting | 0 .. 1 | bc-FetalHeartRate | Observation.comment | ||||||||
1180 | Probleem (Zwangerschap) | 0 .. * | bc-DisorderOfPregnancy | Condition |
| |||||||
1181 | ProbleemAnatomischeLocatie | 0 .. 1 | bc-DisorderOfPregnancy | Condition.bodySite | ||||||||
1182 | ProbleemLateraliteit | 0 .. 1 | bc-DisorderOfPregnancy | Condition.bodySite.extension:Laterality.valueCodeableConcept:valueCodeableConcept | ||||||||
1183 | ProbleemType | 0 .. 1 | bc-DisorderOfPregnancy | Condition.category | ||||||||
1184 | ProbleemNaam | 1 .. 1 | bc-DisorderOfPregnancy | Condition.code | ||||||||
8654 | Ernst oedeem | 1 .. 1 | bc-DisorderOfPregnancy | Condition.severity | ||||||||
7894 | Vermoeden iuvd op basis van | 1 .. 1 | bc-DisorderOfPregnancy | Condition.evidence.code | ||||||||
1185 | ProbleemBeginDatum | 0 .. 1 | bc-DisorderOfPregnancy | Condition.onsetDateTime:onsetDateTime | ||||||||
1186 | ProbleemEindDatum | 0 .. 1 | bc-DisorderOfPregnancy | Condition.abatementDateTime:abatementDateTime | ||||||||
3409 | Zwangerschapsduur | 1 .. 1 | zib-Pregnancy-PregnancyDuration | Observation.value[x]:valueQuantity | ||||||||
1187 | ProbleemStatus | 1 .. 1 | bc-DisorderOfPregnancy | Condition.clinicalStatus | ||||||||
1188 | VerificatieStatus | 0 .. 1 | bc-DisorderOfPregnancy | Condition.verificationStatus | ||||||||
1189 | Toelichting | 0 .. 1 | bc-DisorderOfPregnancy | Condition.note | ||||||||
1190 | Verrichting (Zwangerschap) | 0 .. * | bc-ObstetricProcedure | Procedure |
| |||||||
1191 | VerrichtingStartDatum | 0 .. 1 | bc-ObstetricProcedure | Procedure.performed[x]:performedPeriod.start | ||||||||
1192 | VerrichtingEindDatum | 0 .. 1 | bc-ObstetricProcedure | Procedure.performed[x]:performedPeriod.end | ||||||||
3408 | Zwangerschapsduur | 0 .. 1 | zib-Pregnancy-PregnancyDuration | Observation.value[x]:valueQuantity | ||||||||
1193 | VerrichtingAnatomischeLocatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.bodySite | ||||||||
1194 | VerrichtingLateraliteit | 0 .. 1 | bc-ObstetricProcedure | Procedure.bodySite.extension:ProcedureLaterality.valueCodeableConcept:valueCodeableConcept | ||||||||
1195 | Indicatie | 0 .. * | bc-ObstetricProcedure | Procedure.reasonReference | ||||||||
1207 | Probleem (Zwangerschap) | 0 .. 1 | bc-ObstetricProcedure | Procedure.reasonReference | ||||||||
1197 | VerrichtingType | 1 .. 1 | bc-ObstetricProcedure | Procedure.code | ||||||||
1198 | VerrichtingMethode | 0 .. * | bc-ObstetricProcedure | Procedure.extension:procedureMethod | ||||||||
1199 | MedischHulpmiddel | 0 .. * | bc-ObstetricProcedure | Procedure.focalDevice.manipulated | ||||||||
10433 | MedischHulpmiddel | 0 .. 1 | zib-MedicalDeviceProduct | Device | ||||||||
1201 | Locatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer | ||||||||
1312 | Zorgaanbieder | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer | ||||||||
1203 | Uitvoerder | 0 .. * | bc-ObstetricProcedure | Procedure.performer | ||||||||
1310 | Zorgverlener | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer | ||||||||
1205 | Aanvrager | 0 .. * | zib-ProcedureRequest | ProcedureRequest.requester | ||||||||
1311 | Zorgverlener | 0 .. 1 | zib-ProcedureRequest | ProcedureRequest.requester | ||||||||
37 | Bevalling | 0 .. 1 | bc-DeliveryProcedure | Procedure |
| |||||||
3411 | Partusnummer | 0 .. 1 | bc-DeliveryProcedure | Procedure.identifier | ||||||||
10694 | Zwangerschapsduur | 1 .. 1 | zib-Pregnancy-PregnancyDuration | Observation.value[x]:valueQuantity | ||||||||
1564 | Probleem (Maternaal) | 0 .. * | bc-DisorderOfLaborAndDelivery | Condition |
| |||||||
1565 | ProbleemAnatomischeLocatie | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.bodySite | ||||||||
1566 | ProbleemLateraliteit | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition | ||||||||
1567 | ProbleemType | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.category | ||||||||
1568 | ProbleemNaam | 1 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.code | ||||||||
7917 | Vermoeden iuvd op basis van | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.evidence.code | ||||||||
1569 | ProbleemBeginDatum | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.onsetDateTime:onsetDateTime | ||||||||
1570 | ProbleemEindDatum | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.abatementDateTime:abatementDateTime | ||||||||
3412 | Zwangerschapsduur | 1 .. 1 | zib-Pregnancy-PregnancyDuration | Observation | ||||||||
1571 | ProbleemStatus | 1 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.clinicalStatus | ||||||||
1572 | VerificatieStatus | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.verificationStatus | ||||||||
1573 | Toelichting | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.note | ||||||||
1547 | Verrichting (Maternaal) | 0 .. * | bc-ObstetricProcedure | Procedure |
| |||||||
1548 | VerrichtingStartDatum | 0 .. 1 | bc-ObstetricProcedure | Procedure.performed[x]:performedPeriod.start | ||||||||
1549 | VerrichtingEindDatum | 0 .. 1 | bc-ObstetricProcedure | Procedure.performed[x]:performedPeriod.end | ||||||||
3413 | Zwangerschapsduur | 0 .. 1 | zib-Pregnancy-PregnancyDuration | Observation | ||||||||
1550 | VerrichtingAnatomischeLocatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.bodySite | ||||||||
1551 | VerrichtingLateraliteit | 0 .. 1 | bc-ObstetricProcedure | Procedure.bodySite.extension:ProcedureLaterality.valueCodeableConcept:valueCodeableConcept | ||||||||
1552 | Indicatie | 0 .. * | bc-ObstetricProcedure | Procedure.reasonReference | ||||||||
1583 | Probleem (Maternaal) | 0 .. 1 | bc-ObstetricProcedure | Procedure.reasonReference | ||||||||
1554 | VerrichtingType | 1 .. 1 | bc-ObstetricProcedure | Procedure.code | ||||||||
10280 | Moment amniotomie | 0 .. 1 | bc-ObstetricProcedure | Procedure.extension:partusPhase | ||||||||
1555 | VerrichtingMethode | 0 .. * | bc-ObstetricProcedure | Procedure.extension:procedureMethod | ||||||||
1556 | MedischHulpmiddel | 0 .. * | bc-ObstetricProcedure | Procedure.focalDevice | ||||||||
10434 | MedischHulpmiddel | 0 .. 1 | zib-MedicalDeviceProduct | Device | ||||||||
1558 | Locatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer | ||||||||
10435 | Zorgaanbieder | 0 .. 1 | nl-core-organization | Organization | ||||||||
1560 | Uitvoerder | 0 .. * | bc-ObstetricProcedure | Procedure.performer | ||||||||
10436 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner | ||||||||
1562 | Aanvrager | 0 .. * | zib-ProcedureRequest | ProcedureRequest.requester | ||||||||
10438 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner | ||||||||
38 | Ontsluitingsfase | 0 .. 1 | nvt | |||||||||
4084 | Actieve Ontsluiting (Observatie) | 1 .. 1 | bc-DeliveryObservation | Observation.code |
| |||||||
4085 | ObservatieDatumTijd | 0 .. 1 | bc-DeliveryObservation | Observation.effective[x]:effectiveDateTime | ||||||||
4087 | BeginActieveOntsluitingWaarde | 1 .. 1 | bc-DeliveryObservation | Observation.value[x]:valueDateTime | ||||||||
4088 | ObservatieMethode | 0 .. 1 | bc-DeliveryObservation | Observation.method | ||||||||
4095 | Toelichting | 0 .. 1 | bc-DeliveryObservation | Observation.comment | ||||||||
4096 | Wijze Begin Baring (Observatie) | 1 .. 1 | bc-DeliveryObservation | Observation |
| |||||||
4097 | ObservatieDatumTijd | 0 .. 1 | bc-DeliveryObservation | Observation.effective[x]:effectiveDateTime | ||||||||
4099 | BeginBaringWaarde | 1 .. 1 | bc-DeliveryObservation | Observation.value[x]:valueCodeableConcept | ||||||||
4100 | ObservatieMethode | 0 .. 1 | bc-DeliveryObservation | Observation.method | ||||||||
4107 | Toelichting | 0 .. 1 | bc-DeliveryObservation | Observation.comment | ||||||||
39 | Uitdrijvingsfase | 0 .. * | ||||||||||
9685 | Patient | 0 .. 1 | bc-Woman | Patient | ||||||||
4144 | Type Partus (Observatie) | 1 .. 1 | bc-BirthObservation | Observation |
| |||||||
4145 | ObservatieDatumTijd | 0 .. 1 | bc-BirthObservation | Observation.effective[x]:effectiveDateTime | ||||||||
4147 | TypePartusWaarde | 1 .. 1 | bc-BirthObservation | Observation.value[x]:valueCodeableConcept | ||||||||
4148 | ObservatieMethode | 0 .. 1 | bc-BirthObservation | Observation.method | ||||||||
4155 | Toelichting | 0 .. 1 | bc-BirthObservation | Observation.comment | ||||||||
4193 | Werkelijke plaats baring (type locatie) (Observatie) | 1 .. 1 | bc-DeliveryObservation | Observation |
| |||||||
4194 | ObservatieDatumTijd | 0 .. 1 | bc-DeliveryObservation | Observation.effective[x]:effectiveDateTime | ||||||||
4196 | WerkelijkePlaatsBaringWaarde | 1 .. 1 | bc-DeliveryObservation | Observation.value[x]:valueCodeableConcept | ||||||||
4197 | ObservatieMethode | 0 .. 1 | bc-DeliveryObservation | Observation.method | ||||||||
4204 | Toelichting | 0 .. 1 | bc-DeliveryObservation | Observation.comment | ||||||||
1587 | Ziekenhuis baring | 0 .. 1 | bc-DeliveryProcedure | Procedure.performer.actor |
| |||||||
1588 | Zorgaanbieder | 0 .. 1 | nl-core-organization | Organization | ||||||||
1591 | Probleem (Kindspecifieke maternale problemen) | 0 .. * | bc-DisorderOfLaborAndDelivery | Condition |
| |||||||
1592 | ProbleemAnatomischeLocatie | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.bodySite | ||||||||
1593 | ProbleemLateraliteit | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.bodySite.extension:Laterality.valueCodeableConcept:valueCodeableConcept | ||||||||
1594 | ProbleemType | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.category | ||||||||
1595 | ProbleemNaam | 1 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.code | ||||||||
1596 | ProbleemBeginDatum | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.onsetDateTime:onsetDateTime | ||||||||
1597 | ProbleemEindDatum | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.abatementDateTime:abatementDateTime | ||||||||
1598 | ProbleemStatus | 1 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.clinicalStatus | ||||||||
1599 | VerificatieStatus | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.verificationStatus | ||||||||
1600 | Toelichting | 0 .. 1 | bc-DisorderOfLaborAndDelivery | Condition.note | ||||||||
1603 | Verrichting (Kindspecifieke maternale verrichtingen) | 0 .. * | bc-ObstetricProcedure | Procedure |
| |||||||
1604 | VerrichtingStartDatum | 0 .. 1 | bc-ObstetricProcedure | Procedure.performed[x]:performedPeriod.start | ||||||||
1605 | VerrichtingEindDatum | 0 .. 1 | bc-ObstetricProcedure | Procedure.performed[x]:performedPeriod.end | ||||||||
1606 | VerrichtingAnatomischeLocatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.bodySite | ||||||||
1607 | VerrichtingLateraliteit | 0 .. 1 | bc-ObstetricProcedure | Procedure.bodySite.extension:ProcedureLaterality.valueCodeableConcept:valueCodeableConcept | ||||||||
1608 | Indicatie | 0 .. * | bc-ObstetricProcedure | Procedure.reasonReference | ||||||||
1620 | Probleem (Kindspecifieke maternale problemen) | 0 .. 1 | bc-ObstetricProcedure | Procedure.reasonReference | ||||||||
1610 | VerrichtingType | 1 .. 1 | bc-ObstetricProcedure | Procedure.code | ||||||||
7919 | Beslismoment sectio caesarea | 0 .. 1 | bc-ObstetricProcedure | Procedure.extension:decisionMoment | ||||||||
1611 | VerrichtingMethode | 0 .. * | bc-ObstetricProcedure | Procedure.extension:procedureMethod | ||||||||
1612 | MedischHulpmiddel | 0 .. * | bc-ObstetricProcedure | Procedure.focalDevice | ||||||||
10452 | MedischHulpmiddel | 0 .. 1 | zib-MedicalDeviceProduct | Device | ||||||||
1614 | Locatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer | ||||||||
10453 | Zorgaanbieder | 0 .. 1 | nl-core-organization | Organization | ||||||||
1616 | Uitvoerder | 0 .. * | bc-ObstetricProcedure | Procedure.performer | ||||||||
10454 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner | ||||||||
10455 | Aanvrager | 0 .. * | zib-procedurerequest | ProcedureRequest.requester | ||||||||
10457 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner | ||||||||
1123 | Medisch onderzoek | 0 .. * | nvt | |||||||||
2416 | Verrichting (Onderzoek) | 0 .. 1 | zib-Procedure | Procedure |
| |||||||
2417 | VerrichtingStartDatum | 1 .. 1 | zib-Procedure | Procedure.effectivePeriod.start | ||||||||
2418 | VerrichtingEindDatum | 1 .. 1 | zib-Procedure | Procedure.effectivePeriod.end | ||||||||
2419 | VerrichtingAnatomischeLocatie | 0 .. 1 | zib-Procedure | Procedure.bodySite | ||||||||
2420 | VerrichtingLateraliteit | 0 .. 1 | zib-Procedure | Procedure.bodySite.extension:ProcedureLaterality.value[x]:valueCodeableConcept | ||||||||
2421 | Indicatie | 0 .. 1 | zib-Procedure | Procedure.reasonReference | ||||||||
2422 | Probleem | 0 .. 1 | zib-Problem | Condition | ||||||||
2423 | VerrichtingType | 1 .. 1 | bc-ObstetricProcedure | Procedure.code | ||||||||
2424 | VerrichtingMethode | 0 .. 1 | bc-ObstetricProcedure | Procedure.extension:procedureMethod | ||||||||
2425 | MedischHulpmiddel | 0 .. 1 | bc-ObstetricProcedure | Procedure.focalDevice | ||||||||
10474 | MedischHulpmiddel | 0 .. 1 | zib-MedicalDeviceProduct | Device | ||||||||
2427 | Locatie | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer.actor | ||||||||
2433 | Zorgaanbieder | 0 .. 1 | nl-core-organization | Organization | ||||||||
2429 | Uitvoerder | 0 .. 1 | bc-ObstetricProcedure | Procedure.performer.actor | ||||||||
2434 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner | ||||||||
2431 | Aanvrager | 0 .. 1 | zib-ProcedureRequest | Procedure.Requestrequester | ||||||||
2435 | Zorgverlener | 0 .. 1 | nl-core-practitioner | Practitioner | ||||||||
1124 | Maternale onderzoeksgegevens | 1 .. 1 | bc-MaternalObservation | Observation |
| |||||||
1125 | Urine-, bloed- en aanvullende onderzoeken | 1 .. * | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
1126 | PSIE | 0 .. * | zib-LaboratoryTestResult-Observation | Observation | ||||||||
1128 | LaboratoriumTest_Bloedgroep | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
1129 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
1132 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
1140 | LaboratoriumTest_Rhesus D | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
1141 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
1144 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
1152 | LaboratoriumTest_Rhesus c | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
1153 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
1156 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
1640 | LaboratoriumTest_ HBsAg | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2367 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
1644 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
1649 | InterpretatieVlaggen | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.interpretation | ||||||||
2356 | LaboratoriumTest_HIV | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2357 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2360 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
2368 | LaboratoriumTest_Lues | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2369 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2372 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2377 | InterpretatieVlaggen | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.interpretation | ||||||||
3501 | Irregulaire antistoffen (Observatie) | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
3502 | IrregulaireAntistoffenDatumTijd | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.effective[x]:effectiveDateTime | ||||||||
3503 | IrregulaireAntistoffenWaarde | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueBoolean | ||||||||
3504 | WelkeAntistoffenWaarde | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueCodeableConcept | ||||||||
3505 | Toelichting | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation.comment | ||||||||
2379 | LaboratoriumTest_Hb | 0 .. * | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2380 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2383 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2401 | Hb typering | 0 .. * | zib-LaboratoryTestResult-Observation | Observation | ||||||||
2491 | LaboratoriumTest_MCV | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2492 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2495 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2513 | LaboratoriumTest_Vitamine B12 | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2514 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2517 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2545 | LaboratoriumTest_Actief-B12 | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2546 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2549 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2524 | LaboratoriumTest_Ferritine | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2525 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2528 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2502 | LaboratoriumTest_Foliumzuur | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2503 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2506 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
2535 | Probleem_Hb-pathie | 0 .. * | zib-Problem | Condition |
| |||||||
2538 | ProbleemType | 0 .. 1 | zib-Problem | Condition.category | ||||||||
2539 | ProbleemNaam | 0 .. 1 | zib-Problem | Condition.code | ||||||||
2540 | ProbleemBeginDatum | 0 .. 1 | zib-Problem | Condition.onset[x]:onsetDateTime | ||||||||
2541 | ProbleemEindDatum | 0 .. 1 | zib-Problem | Condition.abatement[x]:abatementDateTime | ||||||||
2542 | ProbleemStatus | 1 .. 1 | zib-Problem | Condition.clinicalStatus | ||||||||
2543 | VerificatieStatus | 0 .. 1 | zib-Problem | Condition.verificationStatus | ||||||||
2544 | Toelichting | 0 .. 1 | zib-Problem | Condition.note | ||||||||
1651 | Schildklierdiagnostiek | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation | ||||||||
1652 | LaboratoriumTest_VrijT4, TSH & TSH receptor antistoffen | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
1653 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
1656 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
1663 | TORCH | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation | ||||||||
2390 | LaboratoriumTest_TORCH | 0 .. 1 | zib-LaboratoryTestResult-Observation | Observation |
| |||||||
2391 | TestCode | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.code | ||||||||
2394 | TestUitslag | 1 .. 1 | zib-LaboratoryTestResult-Observation | Observation.value[x]:valueQuantity | ||||||||
7 Release notes
Release notes can be found on the functional design page.
8 Support
For questions and change requests regarding this IG, please create a ticket in BITS.