|
|
Regel 1: |
Regel 1: |
| __NOINDEX__ | | __NOINDEX__ |
− |
| |
− | __NUMBEREDHEADINGS__
| |
− | {{DISPLAYTITLE:FHIR Implementation Guide: Pregnancy Card {{VersieInfo|Geboortezorg}}}}
| |
− |
| |
− | [[Bestand:MedMij2.png |link=https://www.medmij.nl/|rechts|Naar medmij.nl]]
| |
− |
| |
− | =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 [[MedMij:Vprepub-2020.01/Ontwerp_Geboortezorg|functional design]] and follows the principles of the general [[MedMij:Vprepub-2020.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 [[Gebz:V1.3_FHIR_IG|birthcare information standard]] and the [https://simplifier.net/packages/nictiz.fhir.nl.stu3.geboortezorg/1.3.0 Simplifier Geboortezorg STU3 package].
| |
− |
| |
− | The technical specifications described in this IG are based on the [https://nictiz.nl/releases/pwd-versie-3-2-3-geboortezorg-perinatologie/ PWD (Perinataal Woordenboek & Dataset) 3.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.
| |
− |
| |
− | {| class="wikitable"
| |
− | ! colspan="2" style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Actors
| |
− | ! colspan="2" style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Systems
| |
− | ! colspan="2" style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | FHIR CapabilityStatements
| |
− | |-
| |
− | ! style="text-align:left; |Name
| |
− | ! style="text-align:left; |Description
| |
− | ! style="text-align:left; |Name
| |
− | ! style="text-align:left; |Description
| |
− | ! style="text-align:left; |Name
| |
− | ! style="text-align:left; |Description
| |
− | |-
| |
− | | Patient
| |
− | | The user of a personal healthcare environment
| |
− | | PHR
| |
− | | Personal health record
| |
− | | [https://simplifier.net/geboortezorg-stu3/pregnancycard-clientcapabilities CapabilityStatement:Receive]
| |
− | | FHIR client requirements
| |
− | |-
| |
− | | Healthcare provider
| |
− | | The user of a XIS
| |
− | | XIS
| |
− | | Healthcare information system
| |
− | | [https://simplifier.net/geboortezorg-stu3/pregnancycard-servercapabilities CapabilityStatement:Send]
| |
− | | FHIR server requirements
| |
− | |}
| |
− |
| |
− | =Boundaries and relationships=
| |
− | [[Bestand:Afsprakenstelsel-01.png|link=https://www.medmij.nl/afsprakenstelsel/|rechts |100px|Go to Afsprakenstelsel]]
| |
− |
| |
− | 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 [https://www.medmij.nl/afsprakenstelsel/ 'MedMij Afsprakenstelsel'].
| |
− |
| |
− | The Pregnancy Card (Dutch: gegevensdienst Integrale Zwangerschapskaart) has overlap with other standards such as the BgZ (Basisgegevensset Zorg), Medication Process, Vital Signs and Lab Results. The 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.
| |
− |
| |
− | =Use case: retrieve pregnancy card=
| |
− | This use case covers the process of retrieving the Pregnancy Card in the Personal Health Record (PHR) of the (pregnant) woman.
| |
− |
| |
− | ==PHR: request message==
| |
− | The PHR system requests the Pregnancy Card using individual search interactions. The Pregnancy Card consists of multiple FHIR resources with certain constraints. To obtain the patient's Pregnancy Card, the client can use multiple individual search operations based on specified [https://www.hl7.org/fhir/stu3/search.html search] queries. The interactions are performed by an HTTP GET as shown:
| |
− |
| |
− | <code>GET [base]/[type]{?[parameters]}</code>
| |
− |
| |
− | ===List of requests===
| |
− | To retrieve all known data of the Pregnancy Card, a client has to execute the following requests.
| |
− |
| |
− | <b>Step 1: Retrieve patient and her maternal record(s)</b>
| |
− |
| |
− | A woman may have data of one or more pregnancies. The data of each pregnancy is captured in a maternal record (EpisodeOfCare).
| |
− | Please note that the {{fhir|status}} search parameter should be set to {{term|active}} to retrieve the current, active pregnancy, or to {{term|finished}} to retrieve earlier, finished pregnancies. If the {{fhir|status}} search parameter is not used, both the active pregnancy and earlier pregnancies are retrieved.
| |
− | <pre>
| |
− | GET Patient
| |
− | GET EpisodeOfCare?type=http://snomed.info/sct|364320009{&status=active|finished}&_include=EpisodeOfCare:organization&_include=EpisodeOfCare:care-manager
| |
− | </pre>
| |
− |
| |
− | <b>Step 2: Retrieve data related to each maternal record</b>
| |
− |
| |
− | For each pregnancy, the related data should be retrieved by using the maternal record id ({{fhir|EpisodeOfCare.id}}) in the {{fhir|context}} search parameter.
| |
− | <pre>
| |
− | GET Condition?context=EpisodeOfCare/{record-id}
| |
− | GET Encounter?episodeofcare={record-id}&_include=Encounter:practitioner
| |
− | GET Observation?context=EpisodeOfCare/{record-id}
| |
− | GET Observation?context:Encounter.episodeofcare=EpisodeOfCare/{record-id}
| |
− | GET Procedure?context=EpisodeOfCare/{record-id}&_include=Procedure:performer&_include=Procedure:based-on
| |
− | </pre>
| |
− |
| |
− | ===PWD to FHIR mapping table===
| |
− |
| |
− | The table below shows in the first three columns the PWD 3.2 data elements, in the fifth and sixth column their mapping to the FHIR profiles.
| |
− |
| |
− | The mapping table below is based on the corresponding ART-DECOR transaction [https://decor.nictiz.nl/ad/#/peri20-/scenarios/scenarios/2.16.840.1.113883.2.4.3.11.60.90.77.1.12/2021-04-06T15:01:01 MedMij Beschikbaarstellen integrale zwangerschapskaart version 2021-04-06T15:01:01]
| |
− |
| |
− | {| class="wikitable"
| |
− | | style="background-color: #1F497D;; color: white; font-weight: bold; text-align:center;" colspan="13" | PWD 3.2 to FHIR
| |
− | |-style="background-color: #1F497D;; color: white; text-align:left;"
| |
− | |style="width:30px;"| Type
| |
− | |style="width:10px;"| #
| |
− | ||Concept
| |
− | |style="width:40px;"| Card
| |
− | || Profile
| |
− | || Mapping
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1313
| |
− | ||Administratief
| |
− | ||1 .. 1
| |
− | ||
| |
− | ||
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||750
| |
− | ||   Contact
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||751
| |
− | ||      ContactType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.class
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3690
| |
− | ||      ContactSoort
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.type
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||752
| |
− | ||      ContactMet
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.participant.individual
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1868
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.participant.individual
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||754
| |
− | ||      Locatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.serviceProvider
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1881
| |
− | ||         Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||756
| |
− | ||      BeginDatumTijd
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.period.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||757
| |
− | ||      EindDatumTijd
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.period.end
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||758
| |
− | ||      RedenContact
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.diagnosis
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||759
| |
− | ||         Probleem
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1984
| |
− | ||            Vrouw/ moeder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.subject
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3828
| |
− | ||               Probleem (Algemene anamnese)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3831
| |
− | ||               Probleem (Psychiatrie)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3829
| |
− | ||               Probleem (Sociale problemen)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3832
| |
− | ||               Probleem (Misbruik/ Geweld)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3830
| |
− | ||               Probleem (Zwangerschap)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1928
| |
− | ||               Probleem (Maternaal)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderPostPartum|bc-DisorderPostPartum]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3833
| |
− | ||               Probleem (Postpartum complicatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderPostPartum|bc-DisorderPostPartum]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1985
| |
− | ||            Kind
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.subject
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1981
| |
− | ||               Probleem (Kindspecifieke maternale problemen)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.code
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1983
| |
− | ||               Probleem (ProblematiekKind)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8781
| |
− | ||               Probleem (Geboortetrauma)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8782
| |
− | ||               Probleem (Congenitale aandoeningen)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8783
| |
− | ||               Probleem_Huid
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8784
| |
− | ||               Probleem_Hoofd/Hals
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8785
| |
− | ||               Probleem_Thorax
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8786
| |
− | ||               Probleem_Abdomen
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8787
| |
− | ||               Probleem_Rug
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8788
| |
− | ||               Probleem_Extremiteiten
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8789
| |
− | ||               Probleem_Genitalia
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8790
| |
− | ||               Probleem_Neurologie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10682
| |
− | ||               Probleem (OpnameIndicatie_LNR)
| |
− | ||0 .. 1
| |
− | ||
| |
− | ||nvt
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10683
| |
− | ||                  ProbleemAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10684
| |
− | ||                  ProbleemLateraliteit
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.bodySite.extension:Laterality.valueCodeableConcept:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10685
| |
− | ||                  ProbleemType
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.category
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10686
| |
− | ||                  ProbleemNaam
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.code
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10687
| |
− | ||                  ProbleemBeginDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.onsetDateTime:onsetDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10688
| |
− | ||                  ProbleemEindDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.abatementDateTime:abatementDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10689
| |
− | ||                  ProbleemStatus
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.clinicalStatus
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10690
| |
− | ||                  VerificatieStatus
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.verificationStatus
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10691
| |
− | ||                  Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfChild|bc-DisorderOfChild]]
| |
− | ||Condition.note
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||769
| |
− | ||         Verrichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1986
| |
− | ||            Vrouw/ moeder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure.subject
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3834
| |
− | ||               Verrichting (Algemene anamnese)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3835
| |
− | ||               Verrichting (Zwangerschap)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1970
| |
− | ||               Verrichting (Maternaal)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3836
| |
− | ||               Verrichting (Onderzoek)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3837
| |
− | ||               Verrichting (Postpartum complicatie)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1987
| |
− | ||            Kind
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Birth|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Birth}}
| |
− | ||Procedure.subject
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1982
| |
− | ||               Verrichting (Kindspecifieke maternale verrichtingen)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8791
| |
− | ||               Verrichting (Ondersteuning opvang)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8792
| |
− | ||               Chirurgische ingrepen (Verrichting)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8793
| |
− | ||               Verrichting (Problematiek kind)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||763
| |
− | ||         AfwijkendeUitslag
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.reason.text
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8780
| |
− | ||         Toelichting reden contact
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.reason.text
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||764
| |
− | ||      Herkomst
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.hospitalization.admitSource
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||765
| |
− | ||      Bestemming
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.hospitalization.dischargeDisposition
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||675
| |
− | ||   Patient
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient*
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3197
| |
− | ||      Naamgegevens
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3198
| |
− | ||         Voornamen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.given
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3199
| |
− | ||         Initialen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.given
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3200
| |
− | ||         Roepnaam
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.given
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3201
| |
− | ||         Naamgebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.use
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3202
| |
− | ||         Geslachtsnaam
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.family:humannameOwnName
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3203
| |
− | ||            Voorvoegsels
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.family:humannameOwnPrefix
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3204
| |
− | ||            Achternaam
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.family:humannameOwnName
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3205
| |
− | ||         GeslachtsnaamPartner
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.family:humannamePartnerName
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3206
| |
− | ||            VoorvoegselsPartner
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.family:humannamePartnerPrefix
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3207
| |
− | ||            AchternaamPartner
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.name.family:humannamePartnerName
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3208
| |
− | ||      Adresgegevens
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3209
| |
− | ||         Straat
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.line.streetName
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3210
| |
− | ||         Huisnummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.line.houseNumber
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3211
| |
− | ||         Huisnummerletter
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.line.buildingNumbersuffix
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3212
| |
− | ||         Huisnummertoevoeging
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.line.additionalLocator
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3213
| |
− | ||         AanduidingBijNummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.line.additionalLocator
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3214
| |
− | ||         Postcode
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.postalCode
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3215
| |
− | ||         Woonplaats
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.city
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3216
| |
− | ||         Gemeente
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.district
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3217
| |
− | ||         Land
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.country
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3218
| |
− | ||         AdditioneleInformatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3219
| |
− | ||         AdresSoort
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.address.use
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3220
| |
− | ||      Contactgegevens
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3221
| |
− | ||         Telefoonnummers
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom.value
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3222
| |
− | ||            Telefoonnummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom.value
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3223
| |
− | ||            TelecomType
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom:extension:TelecomType
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3224
| |
− | ||            NummerSoort
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom.use
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3225
| |
− | ||         EmailAdressen
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom.value
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3226
| |
− | ||            EmailAdres
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom.value
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3227
| |
− | ||            EmailSoort
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.telecom.use
| |
− | |-
| |
− | |[[Bestand:II.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||682
| |
− | ||      Identificatienummer
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.identifier
| |
− | |-
| |
− | |[[Bestand:BL.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9861
| |
− | ||      GeborenIndicator
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-child|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-child}}
| |
− | ||Patient.extension.born
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||683
| |
− | ||      Geboortedatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.birthDate
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||684
| |
− | ||      Geslacht (administratief)
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.gender
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10776
| |
− | ||      Geslacht (identiteit)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Woman|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Woman}}
| |
− | ||Patient.extension:genderIdentity
| |
− | |-
| |
− | |[[Bestand:BL.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||685
| |
− | ||      MeerlingIndicator
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.multipleBirthBoolean
| |
− | |-
| |
− | |[[Bestand:ANY.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3358
| |
− | ||      Rangnummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.multipleInteger
| |
− | |-
| |
− | |[[Bestand:BL.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||686
| |
− | ||      OverlijdensIndicator
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.deceasedBoolean
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||687
| |
− | ||      DatumOverlijden
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-patient}}
| |
− | ||Patient.deceasedDateTime
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||956
| |
− | ||   Zorgaanbieder
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-
| |
− | |[[Bestand:II.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||957
| |
− | ||      ZorgaanbiederIdentificatienummer
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.identifier
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||958
| |
− | ||      OrganisatieNaam
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.name
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3236
| |
− | ||      Adresgegevens
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3237
| |
− | ||         Straat
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.line.streetName
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3238
| |
− | ||         Huisnummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.line.houseNumber
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3239
| |
− | ||         Huisnummerletter
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.line:extension:buildingNumbersuffix
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3240
| |
− | ||         Huisnummertoevoeging
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.line:extension:buildingNumbersuffix
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3241
| |
− | ||         AanduidingBijNummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.line:extension:additionalLocator
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3242
| |
− | ||         Postcode
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.postalCode
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3243
| |
− | ||         Woonplaats
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.city
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3244
| |
− | ||         Gemeente
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.district
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3245
| |
− | ||         Land
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.country
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3246
| |
− | ||         AdditioneleInformatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.line.extension
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3247
| |
− | ||         AdresSoort
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.address.use/.type (via conceptMap)
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||965
| |
− | ||      OrganisatieType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization.type
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||978
| |
− | ||   Zorgverlener
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-
| |
− | |[[Bestand:II.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||979
| |
− | ||      ZorgverlenerIdentificatienummer
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.identifier
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3248
| |
− | ||      Naamgegevens
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3249
| |
− | ||         Voornamen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.given
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3250
| |
− | ||         Initialen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.given
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3251
| |
− | ||         Roepnaam
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.given
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3252
| |
− | ||         Naamgebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name:extension:humannameAssemblyOrder
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3253
| |
− | ||         Geslachtsnaam
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.family:extension:humannameOwnName
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3254
| |
− | ||            Voorvoegsels
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.family:extension:humannameOwnPrefix
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3255
| |
− | ||            Achternaam
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.family:extension:humanNameOwnName
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3256
| |
− | ||         GeslachtsnaamPartner
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.family:extension:humannamePartnerName
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3257
| |
− | ||            VoorvoegselsPartner
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.family:extension:humannamePartnerPrefix
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3258
| |
− | ||            AchternaamPartner
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.name.family:extension:humannamePartnerName
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2219
| |
− | ||      Specialisme
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitionerrole|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitionerrole}}
| |
− | ||PractitionerRole.specialty
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3271
| |
− | ||      Contactgegevens
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.telecom
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3272
| |
− | ||         Telefoonnummers
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.telecom.value
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3273
| |
− | ||            Telefoonnummer
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.telecom.value
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3274
| |
− | ||            TelecomType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner.telecom:extension:TelecomType
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1678
| |
− | ||      Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||989
| |
− | ||      ZorgverlenersRol
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter.participant.type
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1314
| |
− | ||Zorgverlening
| |
− | ||1 .. *
| |
− | ||
| |
− | ||nvt
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3399
| |
− | ||   ZorgEpisode
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalRecord|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-MaternalRecord}}
| |
− | ||EpisodeOfCare
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3400
| |
− | ||      BeginDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalRecord|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-MaternalRecord}}
| |
− | ||EpisodeOfCare.period.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3401
| |
− | ||      EindDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalRecord|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-MaternalRecord}}
| |
− | ||EpisodeOfCare.period.end
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||674
| |
− | ||Vrouw
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Woman|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Woman}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1713
| |
− | ||   Demografische gegevens
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Woman|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Woman}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1434
| |
− | ||      Patient
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Woman|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Woman}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1127
| |
− | ||   Bloedonderzoek
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1139
| |
− | ||      LaboratoriumTest_Bloedgroep
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1151
| |
− | ||      LaboratoriumTest_Rhesus D
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1163
| |
− | ||      LaboratoriumTest_Rhesus c
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||25
| |
− | ||Zwangerschapsgegevens
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalRecord|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-MaternalRecord}}
| |
− | ||EpisodeOfCare
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1699
| |
− | ||   Coördinerend zorgverlener
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalRecord|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-MaternalRecord}}
| |
− | ||EpisodeOfCare.careManager
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9662
| |
− | ||      Zorgverlener
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3341
| |
− | ||   Zwangerschap
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy}}
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3342
| |
− | ||      Zwangerschapsduur
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3343
| |
− | ||      Pariteit
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-Parity|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-Parity}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3344
| |
− | ||      Graviditeit
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-Gravidity|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-Gravidity}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3345
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy}}
| |
− | ||Condition.note
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3346
| |
− | ||      ATermeDatumItems
| |
− | ||1 .. *
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3347
| |
− | ||         ATermeDatum
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3348
| |
− | ||         BepalingsMethode
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3349
| |
− | ||         DatumBepaling
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3350
| |
− | ||         DatumLaatsteMenstruatie
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-DateLastMenstruation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-DateLastMenstruation}}
| |
− | ||Observation.value[x]:valueDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1729
| |
− | ||      Datum einde zwangerschap
| |
− | ||0 .. *
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueDateTime
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2220
| |
− | ||   Definitieve à terme datum (Observatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2221
| |
− | ||      Definitieve à terme DatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2223
| |
− | ||      Definitieve à terme Waarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2224
| |
− | ||      Definitieve à terme Methode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method.coding:aTermMethod
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2225
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1837
| |
− | ||   Aantal foetussen (Observatie)
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1838
| |
− | ||      AantalFoetussenDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1840
| |
− | ||      AantalFoetussenWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1841
| |
− | ||      ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1843
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1711
| |
− | ||   Meerling zwangerschap (Observatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1825
| |
− | ||      MeerlingZwangerschapDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2231
| |
− | ||      TyperingGemellizwangerschapWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1845
| |
− | ||      Aantal foetussen (Observatie)
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1833
| |
− | ||      ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1826
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1734
| |
− | ||   Aantal levende kinderen (Observatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1735
| |
− | ||      AantalLevendeKinderenDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1740
| |
− | ||      AantalLevendeKinderenWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1736
| |
− | ||      ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1738
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1817
| |
− | ||   Fetal loss (Observatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1818
| |
− | ||      FetalLossDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1820
| |
− | ||      FetalLossWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1821
| |
− | ||      ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1824
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1742
| |
− | ||   Foliumzuurgebruik (Observatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1743
| |
− | ||      FoliumzuurgebruikDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1745
| |
− | ||      FoliumzuurgebruikWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1746
| |
− | ||      ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1749
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||111
| |
− | ||   Prenatale controle
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10520
| |
− | ||      Contact
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Encounter}}
| |
− | ||Encounter
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||7025
| |
− | ||      Zwangerschapsduur
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2134
| |
− | ||      Leven voelen (Observatie)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2135
| |
− | ||         LevenVoelenDatumTijd
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2137
| |
− | ||         LevenVoelenWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2138
| |
− | ||         ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2141
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-PregnancyObservation|bc-PregnancyObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1078
| |
− | ||      Lichaamsgewicht
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyWeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-BodyWeight}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1072
| |
− | ||      Bloeddruk
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BloodPressure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-BloodPressure}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||121
| |
− | ||      AlcoholGebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||122
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation.comment
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||123
| |
− | ||         AlcoholGebruikStatus
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||124
| |
− | ||         WaarnemingGebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation.effectivePeriod
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||125
| |
− | ||            StartDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||126
| |
− | ||            StopDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||127
| |
− | ||            Hoeveelheid
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-AlcoholUse}}
| |
− | ||Observation.component:amount.valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||112
| |
− | ||      DrugsGebruik
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||117
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.comment
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||119
| |
− | ||         DrugsGebruikStatus
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||118
| |
− | ||         DrugsOfGeneesmiddelSoort
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.component:DrugOrMedicationType.valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||120
| |
− | ||         Toedieningsweg
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.component:RouteOfAdministration.valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||113
| |
− | ||         WaarnemingGebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.effectivePeriod
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||114
| |
− | ||            StartDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||115
| |
− | ||            StopDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||116
| |
− | ||            Hoeveelheid
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-DrugUse}}
| |
− | ||Observation.component:amount.valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2243
| |
− | ||      TabakGebruik
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2244
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.comment
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2246
| |
− | ||         TabakGebruikStatus
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2245
| |
− | ||         SoortTabakGebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.component:TypeOfTobaccoUsed.valueCodeabelConcet
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2247
| |
− | ||         WaarnemingGebruik
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.effectivePeriod
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2248
| |
− | ||            StartDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2249
| |
− | ||            StopDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2250
| |
− | ||            Hoeveelheid
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.component:amount.valueQuantity
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2251
| |
− | ||            PackYears
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-TobaccoUse}}
| |
− | ||Observation.component:PackYears.valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1775
| |
− | ||      Uitwendig onderzoek
| |
− | ||0 .. *
| |
− | ||
| |
− | ||nvt
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10521
| |
− | ||         Bevindingen Moeder
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3415
| |
− | ||            Fundushoogte (Meting)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3417
| |
− | ||               FundushoogteWaarde
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3418
| |
− | ||               MeetMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3421
| |
− | ||               MeetDatumBeginTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3422
| |
− | ||               MeetDatumEindTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3423
| |
− | ||               Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3424
| |
− | ||               AnatomischeLocatieMeting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3425
| |
− | ||                  Locatie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4048
| |
− | ||            Fundusstand (Meting)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4050
| |
− | ||               FundusstandWaarde
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4051
| |
− | ||               MeetMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4054
| |
− | ||               MeetDatumBeginTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4055
| |
− | ||               MeetDatumEindTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4056
| |
− | ||               Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4057
| |
− | ||               AnatomischeLocatieMeting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4058
| |
− | ||                  Locatie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10522
| |
− | ||         Bevindingen Foetus
| |
− | ||0 .. *
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4060
| |
− | ||            LiggingFoetus (Meting)
| |
− | ||1 .. *
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4062
| |
− | ||               LiggingFoetusWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4066
| |
− | ||               MeetDatumBeginTijd
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4067
| |
− | ||               MeetDatumEindTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4069
| |
− | ||               AnatomischeLocatieMeting
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4070
| |
− | ||                  Locatie
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4072
| |
− | ||            IndalingFoetus(Meting)
| |
− | ||1 .. *
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4074
| |
− | ||               IndalingFoetusWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4078
| |
− | ||               MeetDatumBeginTijd
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4079
| |
− | ||               MeetDatumEindTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.effective[x]:effectivePeriod.end
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4081
| |
− | ||               AnatomischeLocatieMeting
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4082
| |
− | ||                  Locatie
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation.bodySite
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1776
| |
− | ||            Foetale hartslag (Hartfrequentie)
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1778
| |
− | ||               HartfrequentieDatumTijd
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1777
| |
− | ||               HartfrequentieWaarde
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1779
| |
− | ||               HartslagMeetMethode
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1781
| |
− | ||               HartslagRegelmatigheid
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation.component:heartRateRegularity.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1782
| |
− | ||               InterpretatieFrequentie
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation.interpretation
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1780
| |
− | ||               Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-FetalHeartRate}}
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1180
| |
− | ||   Probleem (Zwangerschap)
| |
− | ||0 .. *
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1181
| |
− | ||      ProbleemAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1182
| |
− | ||      ProbleemLateraliteit
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.bodySite.extension:Laterality.valueCodeableConcept:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1183
| |
− | ||      ProbleemType
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.category
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1184
| |
− | ||      ProbleemNaam
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||8654
| |
− | ||      Ernst oedeem
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.severity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||7894
| |
− | ||      Vermoeden iuvd op basis van
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.evidence.code
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1185
| |
− | ||      ProbleemBeginDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.onsetDateTime:onsetDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1186
| |
− | ||      ProbleemEindDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.abatementDateTime:abatementDateTime
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3409
| |
− | ||      Zwangerschapsduur
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1187
| |
− | ||      ProbleemStatus
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.clinicalStatus
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1188
| |
− | ||      VerificatieStatus
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.verificationStatus
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1189
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfPregnancy|bc-DisorderOfPregnancy]]
| |
− | ||Condition.note
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1190
| |
− | ||   Verrichting (Zwangerschap)
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1191
| |
− | ||      VerrichtingStartDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performed[x]:performedPeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1192
| |
− | ||      VerrichtingEindDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performed[x]:performedPeriod.end
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3408
| |
− | ||      Zwangerschapsduur
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1193
| |
− | ||      VerrichtingAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1194
| |
− | ||      VerrichtingLateraliteit
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.bodySite.extension:ProcedureLaterality.valueCodeableConcept:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1195
| |
− | ||      Indicatie
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1207
| |
− | ||         Probleem (Zwangerschap)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1197
| |
− | ||      VerrichtingType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1198
| |
− | ||      VerrichtingMethode
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.extension:procedureMethod
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1199
| |
− | ||      MedischHulpmiddel
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.focalDevice.manipulated
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10433
| |
− | ||         MedischHulpmiddel
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-MedicalDeviceProduct|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-MedicalDeviceProduct}}
| |
− | ||Device
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1201
| |
− | ||      Locatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1312
| |
− | ||         Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1203
| |
− | ||      Uitvoerder
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1310
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1205
| |
− | ||      Aanvrager
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ProcedureRequest|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ProcedureRequest}}
| |
− | ||ProcedureRequest.requester
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1311
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ProcedureRequest|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ProcedureRequest}}
| |
− | ||ProcedureRequest.requester
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||37
| |
− | ||Bevalling
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DeliveryProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-DeliveryProcedure}}
| |
− | ||Procedure
| |
− | |-
| |
− | |[[Bestand:II.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3411
| |
− | ||   Partusnummer
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DeliveryProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-DeliveryProcedure}}
| |
− | ||Procedure.identifier
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10694
| |
− | ||   Zwangerschapsduur
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1564
| |
− | ||   Probleem (Maternaal)
| |
− | ||0 .. *
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1565
| |
− | ||      ProbleemAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1566
| |
− | ||      ProbleemLateraliteit
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1567
| |
− | ||      ProbleemType
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.category
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1568
| |
− | ||      ProbleemNaam
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||7917
| |
− | ||      Vermoeden iuvd op basis van
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.evidence.code
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1569
| |
− | ||      ProbleemBeginDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.onsetDateTime:onsetDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1570
| |
− | ||      ProbleemEindDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.abatementDateTime:abatementDateTime
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3412
| |
− | ||      Zwangerschapsduur
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1571
| |
− | ||      ProbleemStatus
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.clinicalStatus
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1572
| |
− | ||      VerificatieStatus
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.verificationStatus
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1573
| |
− | ||      Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.note
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1547
| |
− | ||   Verrichting (Maternaal)
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1548
| |
− | ||      VerrichtingStartDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performed[x]:performedPeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1549
| |
− | ||      VerrichtingEindDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performed[x]:performedPeriod.end
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3413
| |
− | ||      Zwangerschapsduur
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Pregnancy-PregnancyDuration}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1550
| |
− | ||      VerrichtingAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1551
| |
− | ||      VerrichtingLateraliteit
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.bodySite.extension:ProcedureLaterality.valueCodeableConcept:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1552
| |
− | ||      Indicatie
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1583
| |
− | ||         Probleem (Maternaal)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1554
| |
− | ||      VerrichtingType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10280
| |
− | ||      Moment amniotomie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.extension:partusPhase
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1555
| |
− | ||      VerrichtingMethode
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.extension:procedureMethod
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1556
| |
− | ||      MedischHulpmiddel
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.focalDevice
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10434
| |
− | ||         MedischHulpmiddel
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-MedicalDeviceProduct|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-MedicalDeviceProduct}}
| |
− | ||Device
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1558
| |
− | ||      Locatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10435
| |
− | ||         Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1560
| |
− | ||      Uitvoerder
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10436
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1562
| |
− | ||      Aanvrager
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ProcedureRequest|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ProcedureRequest}}
| |
− | ||ProcedureRequest.requester
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10438
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||38
| |
− | ||   Ontsluitingsfase
| |
− | ||0 .. 1
| |
− | ||
| |
− | ||nvt
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4084
| |
− | ||      Actieve Ontsluiting (Observatie)
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4085
| |
− | ||         ObservatieDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4087
| |
− | ||         BeginActieveOntsluitingWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.value[x]:valueDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4088
| |
− | ||         ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4095
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4096
| |
− | ||      Wijze Begin Baring (Observatie)
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4097
| |
− | ||         ObservatieDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4099
| |
− | ||         BeginBaringWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4100
| |
− | ||         ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4107
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||39
| |
− | ||   Uitdrijvingsfase
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Birth|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Birth}}
| |
− | ||Procedure
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9685
| |
− | ||      Patient
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Woman|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Woman}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4144
| |
− | ||      Type Partus (Observatie)
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-BirthObservation|bc-BirthObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4145
| |
− | ||         ObservatieDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-BirthObservation|bc-BirthObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4147
| |
− | ||         TypePartusWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-BirthObservation|bc-BirthObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4148
| |
− | ||         ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-BirthObservation|bc-BirthObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4155
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-BirthObservation|bc-BirthObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4193
| |
− | ||      Werkelijke plaats baring (type locatie) (Observatie)
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4194
| |
− | ||         ObservatieDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4196
| |
− | ||         WerkelijkePlaatsBaringWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4197
| |
− | ||         ObservatieMethode
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||4204
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DeliveryObservation|bc-DeliveryObservation]]
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1587
| |
− | ||      Ziekenhuis baring
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DeliveryProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-DeliveryProcedure}}
| |
− | ||Procedure.performer.actor
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1588
| |
− | ||         Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1591
| |
− | ||      Probleem (Kindspecifieke maternale problemen)
| |
− | ||0 .. *
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1592
| |
− | ||         ProbleemAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1593
| |
− | ||         ProbleemLateraliteit
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.bodySite.extension:Laterality.valueCodeableConcept:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1594
| |
− | ||         ProbleemType
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.category
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1595
| |
− | ||         ProbleemNaam
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.code
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1596
| |
− | ||         ProbleemBeginDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.onsetDateTime:onsetDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1597
| |
− | ||         ProbleemEindDatum
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.abatementDateTime:abatementDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1598
| |
− | ||         ProbleemStatus
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.clinicalStatus
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1599
| |
− | ||         VerificatieStatus
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.verificationStatus
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1600
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-DisorderOfLaborAndDelivery|bc-DisorderOfLaborAndDelivery]]
| |
− | ||Condition.note
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1603
| |
− | ||      Verrichting (Kindspecifieke maternale verrichtingen)
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1604
| |
− | ||         VerrichtingStartDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performed[x]:performedPeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1605
| |
− | ||         VerrichtingEindDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performed[x]:performedPeriod.end
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1606
| |
− | ||         VerrichtingAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1607
| |
− | ||         VerrichtingLateraliteit
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.bodySite.extension:ProcedureLaterality.valueCodeableConcept:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1608
| |
− | ||         Indicatie
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1620
| |
− | ||            Probleem (Kindspecifieke maternale problemen)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1610
| |
− | ||         VerrichtingType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||7919
| |
− | ||         Beslismoment sectio caesarea
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.extension:decisionMoment
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1611
| |
− | ||         VerrichtingMethode
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.extension:procedureMethod
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1612
| |
− | ||         MedischHulpmiddel
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.focalDevice
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10452
| |
− | ||            MedischHulpmiddel
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-MedicalDeviceProduct|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-MedicalDeviceProduct}}
| |
− | ||Device
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1614
| |
− | ||         Locatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10453
| |
− | ||            Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1616
| |
− | ||         Uitvoerder
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10454
| |
− | ||            Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10455
| |
− | ||         Aanvrager
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-procedurerequest|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-procedurerequest}}
| |
− | ||ProcedureRequest.requester
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10457
| |
− | ||            Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1404
| |
− | ||Kind
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Child|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Child}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1754
| |
− | ||   Demografische gegevens
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Child|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Child}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1378
| |
− | ||      Patient
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Child|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-Child}}
| |
− | ||Patient
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1407
| |
− | ||   Lichamelijk onderzoek kind
| |
− | ||0 .. 1
| |
− | ||
| |
− | ||nvt
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1418
| |
− | ||      Geboortegewicht (Lichaamsgewicht)
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1419
| |
− | ||         GewichtWaarde
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1423
| |
− | ||         PercentielGeboortegewicht
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation.interpretation
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1420
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation.comment
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1421
| |
− | ||         GewichtDatumTijd
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1422
| |
− | ||         Kleding
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation.component:clothing.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1424
| |
− | ||      Lichaamslengte
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyHeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-BodyHeight}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1425
| |
− | ||         LengteWaarde
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyHeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-BodyHeight}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1426
| |
− | ||         LengteDatumTijd
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyHeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-BodyHeight}}
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1427
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyHeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-BodyHeight}}
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1429
| |
− | ||      Schedelomvang
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-HeadCircumference}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1430
| |
− | ||         SchedelomvangMeetmethode
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-HeadCircumference}}
| |
− | ||Observation.method
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1431
| |
− | ||         Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-HeadCircumference}}
| |
− | ||Observation.comment
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1432
| |
− | ||         SchedelomvangWaarde
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-HeadCircumference}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1433
| |
− | ||         SchedelomvangDatumTijd
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-HeadCircumference}}
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1765
| |
− | ||      Bevindingen
| |
− | ||0 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2706
| |
− | ||         Algemene indruk
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-ChildObservation|bc-ChildObservation]]
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1408
| |
− | ||            ApgarScore1min
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ApgarScore}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1410
| |
− | ||               ApgarScoreTotaal
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ApgarScore}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9663
| |
− | ||            ApgarScore5min
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ApgarScore}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9665
| |
− | ||               ApgarScoreTotaal
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ApgarScore}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9672
| |
− | ||            ApgarScore10min
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ApgarScore}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:INT.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||9674
| |
− | ||               ApgarScoreTotaal
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ApgarScore}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1123
| |
− | ||Medisch onderzoek
| |
− | ||0 .. *
| |
− | ||
| |
− | ||nvt
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2416
| |
− | ||   Verrichting (Onderzoek)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure
| |
− | |-
| |
− | |
| |
− | ||2417
| |
− | ||      VerrichtingStartDatum
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure.effectivePeriod.start
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2418
| |
− | ||      VerrichtingEindDatum
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure.effectivePeriod.end
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2419
| |
− | ||      VerrichtingAnatomischeLocatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure.bodySite
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2420
| |
− | ||      VerrichtingLateraliteit
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure.bodySite.extension:ProcedureLaterality.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2421
| |
− | ||      Indicatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Procedure}}
| |
− | ||Procedure.reasonReference
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2422
| |
− | ||         Probleem
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2423
| |
− | ||      VerrichtingType
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2424
| |
− | ||      VerrichtingMethode
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.extension:procedureMethod
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2425
| |
− | ||      MedischHulpmiddel
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.focalDevice
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||10474
| |
− | ||         MedischHulpmiddel
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-MedicalDeviceProduct|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-MedicalDeviceProduct}}
| |
− | ||Device
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2427
| |
− | ||      Locatie
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer.actor
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2433
| |
− | ||         Zorgaanbieder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-organization}}
| |
− | ||Organization
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2429
| |
− | ||      Uitvoerder
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0|title=bc-ObstetricProcedure}}
| |
− | ||Procedure.performer.actor
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2434
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2431
| |
− | ||      Aanvrager
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ProcedureRequest|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-ProcedureRequest}}
| |
− | ||Procedure.Requestrequester
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2435
| |
− | ||         Zorgverlener
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://fhir.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=nl-core-practitioner}}
| |
− | ||Practitioner
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1124
| |
− | ||   Maternale onderzoeksgegevens
| |
− | ||1 .. 1
| |
− | ||[[Gebz:FHIR_bc-MaternalObservation|bc-MaternalObservation]]
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1125
| |
− | ||      Urine-, bloed- en aanvullende onderzoeken
| |
− | ||1 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1126
| |
− | ||         PSIE
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1128
| |
− | ||            LaboratoriumTest_Bloedgroep
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1129
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1132
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1140
| |
− | ||            LaboratoriumTest_Rhesus D
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1141
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1144
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1152
| |
− | ||            LaboratoriumTest_Rhesus c
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1153
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1156
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1640
| |
− | ||            LaboratoriumTest_ HBsAg
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2367
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1644
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1649
| |
− | ||               InterpretatieVlaggen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.interpretation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2356
| |
− | ||            LaboratoriumTest_HIV
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2357
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2360
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2368
| |
− | ||            LaboratoriumTest_Lues
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2369
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2372
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2377
| |
− | ||               InterpretatieVlaggen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.interpretation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3501
| |
− | ||            Irregulaire antistoffen (Observatie)
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3502
| |
− | ||               IrregulaireAntistoffenDatumTijd
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.effective[x]:effectiveDateTime
| |
− | |-
| |
− | |[[Bestand:BL.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3503
| |
− | ||               IrregulaireAntistoffenWaarde
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueBoolean
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3504
| |
− | ||               WelkeAntistoffenWaarde
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueCodeableConcept
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||3505
| |
− | ||               Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.comment
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2379
| |
− | ||         LaboratoriumTest_Hb
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2380
| |
− | ||            TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2383
| |
− | ||            TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2401
| |
− | ||         Hb typering
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2491
| |
− | ||            LaboratoriumTest_MCV
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2492
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2495
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2513
| |
− | ||            LaboratoriumTest_Vitamine B12
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2514
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2517
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2545
| |
− | ||            LaboratoriumTest_Actief-B12
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2546
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2549
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2524
| |
− | ||            LaboratoriumTest_Ferritine
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2525
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2528
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2502
| |
− | ||            LaboratoriumTest_Foliumzuur
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2503
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2506
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2535
| |
− | ||            Probleem_Hb-pathie
| |
− | ||0 .. *
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2538
| |
− | ||               ProbleemType
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.category
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2539
| |
− | ||               ProbleemNaam
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.code
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2540
| |
− | ||               ProbleemBeginDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.onset[x]:onsetDateTime
| |
− | |-
| |
− | |[[Bestand:TS.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2541
| |
− | ||               ProbleemEindDatum
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.abatement[x]:abatementDateTime
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2542
| |
− | ||               ProbleemStatus
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.clinicalStatus
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2543
| |
− | ||               VerificatieStatus
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.verificationStatus
| |
− | |-
| |
− | |[[Bestand:ST.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2544
| |
− | ||               Toelichting
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-Problem}}
| |
− | ||Condition.note
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1651
| |
− | ||         Schildklierdiagnostiek
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1652
| |
− | ||            LaboratoriumTest_VrijT4, TSH & TSH receptor antistoffen
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1653
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1656
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||1663
| |
− | ||         TORCH
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-style="vertical-align:top; background-color: #E3E3E3;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2390
| |
− | ||            LaboratoriumTest_TORCH
| |
− | ||0 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation
| |
− | |-
| |
− | |[[Bestand:CD.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2391
| |
− | ||               TestCode
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.code
| |
− | |-
| |
− | |[[Bestand:PQ.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | ||2394
| |
− | ||               TestUitslag
| |
− | ||1 .. 1
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.0.0|title=zib-LaboratoryTestResult-Observation}}
| |
− | ||Observation.value[x]:valueQuantity
| |
− | |-style="vertical-align:top; background-color: #E8D7BE;"
| |
− | |[[Bestand:Container.png|16px|link=Beschrijving_en_gebruik_datatypes]]
| |
− | |}
| |
− |
| |
− | ==XIS: response message==
| |
− | The returned data to the PHR should conform to the profiles listed in [[Gebz:FHIR_Integral_Pregnancy_Card#FHIR_profiles|FHIR profiles]].
| |
− |
| |
− | =FHIR profiles=
| |
− |
| |
− | {{MedMij:Vprepub-2020.01/NoteBoxPackage|p1=nictiz.fhir.nl.stu3.geboortezorg|v1Min=1.3.0|p2=nictiz.fhir.nl.stu3.zib2017|v2Min=2.0.0|}}
| |
− |
| |
− | ==Generic HCIM profiles==
| |
− |
| |
− | {| class="wikitable"
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Profile name
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | FHIR Resource
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | HCIM EN
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Canonical URL
| |
− | |-
| |
− | | nl core Patient
| |
− | | Patient
| |
− | | [https://zibs.nl/wiki/Patient-v3.1(2017EN) Patient]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/nl-core-patient|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/nl-core-patient}}
| |
− | |-
| |
− | | nl core Organization
| |
− | | Organization
| |
− | | [https://zibs.nl/wiki/HealthcareProvider-v3.1.1(2017EN) HealthcareProvider]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/nl-core-organization|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/nl-core-organization}}
| |
− | |-
| |
− | | nl core Practitioner
| |
− | | Practitioner
| |
− | | rowspan="2" | [https://zibs.nl/wiki/HealthProfessional-v3.2(2017EN) HealthProfessional]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/nl-core-practitioner|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/nl-core-practitioner}}
| |
− | |-
| |
− | | nl core PractitionerRole
| |
− | | PractitionerRole
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/nl-core-practitionerrole|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/nl-core-practitionerrole}}
| |
− | |-
| |
− | | zib AlcoholUse
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/AlcoholUse-v3.1(2017EN) AlcoholUse]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-AlcoholUse}}
| |
− | |-
| |
− | | zib ApgarScore
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/ApgarScore-v1.0(2017EN) ApgarScore]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-ApgarScore}}
| |
− | |-
| |
− | | zib BloodPressure
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/BloodPressure-v3.1(2017EN) BloodPressure]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BloodPressure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-BloodPressure}}
| |
− | |-
| |
− | | zib BodyHeight
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/BodyHeight-v3.1(2017EN) BodyHeight]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyHeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-BodyHeight}}
| |
− | |-
| |
− | | zib BodyWeight
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/BodyWeight-v3.1(2017EN) BodyWeight]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-BodyWeight|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-BodyWeight}}
| |
− | |-
| |
− | | zib DrugUse
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/DrugUse-v3.2(2017EN) DrugUse]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-DrugUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0}}
| |
− | |-
| |
− | | zib HeadCircumference
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/HeadCircumference-v1.1(2017EN) HeadCircumference]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-HeadCircumference}}
| |
− | |-
| |
− | | zib LaboratoryTestResult-Observation
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/LaboratoryTestResult-v4.1(2017EN) LaboratotoryTestResult]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-LaboratoryTestResult-Observation}}
| |
− | |-
| |
− | | zib MedicalDeviceProduct
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/MedicalDevice-v3.1(2017EN) MedicalDevice]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-MedicalDeviceProduct|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0}}
| |
− | |-
| |
− | | zib Pregnancy
| |
− | | Condition
| |
− | | rowspan="6" |[https://zibs.nl/wiki/Pregnancy-v3.1(2017EN) Pregnancy]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy}}
| |
− | |-
| |
− | | zib Pregnancy-DateLastMenstruation
| |
− | | Observation
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-DateLastMenstruation|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-DateLastMenstruation}}
| |
− | |-
| |
− | | zib Pregnancy-Gravidity
| |
− | | Observation
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-Gravidity|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-Gravidity}}
| |
− | |-
| |
− | | zib Pregnancy-Parity
| |
− | | Observation
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-Parity|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0}}
| |
− | |-
| |
− | | zib Pregnancy-PregnancyDuration
| |
− | | Observation
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-PregnancyDuration}}
| |
− | |-
| |
− | | zib Pregnancy-TermDate
| |
− | | Observation
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Pregnancy-TermDate|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0}}
| |
− | |-
| |
− | | zib Problem
| |
− | | Condition
| |
− | | [https://zibs.nl/wiki/Problem-v4.1(2017EN) Problem]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Problem|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-Problem}}
| |
− | |-
| |
− | | zib Procedure
| |
− | | Procedure
| |
− | | [https://zibs.nl/wiki/Procedure-v4.1(2017EN) Procedure]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-Procedure|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-Procedure}}
| |
− | |-
| |
− | | zib ProcedureRequest
| |
− | | ProcedureRequest
| |
− | | [https://zibs.nl/wiki/PlannedCareActivityForTransfer-v3.1(2017EN) PlannedCareActivityForTransfer]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-ProcedureRequest|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-ProcedureRequest}}
| |
− | |-
| |
− | | zib TobaccoUse
| |
− | | Observation
| |
− | | [https://zibs.nl/wiki/TobaccoUse-v3.1(2017EN) TobaccoUse]
| |
− | | {{Simplifier|http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse|nictiz.fhir.nl.stu3.zib2017|pkgVersion=2.2.0|title=http://nictiz.nl/fhir/StructureDefinition/zib-TobaccoUse}}
| |
− | |-
| |
− | |}
| |
− |
| |
− | ==Birthcare specific profiles==
| |
− |
| |
− | {| class="wikitable"
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Profile name
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Pattern
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | FHIR Resource
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | HCIM EN
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Canonical URL
| |
− | ! style="text-align:left; background-color: #4AB8A7; color: white; font-weight: bold;" | Description
| |
− | |-
| |
− | ||bc-Birth
| |
− | ||
| |
− | ||Procedure
| |
− | ||[https://zibs.nl/wiki/Procedure-v4.1(2017EN) Procedure]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Birth|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Procedure profile describing the birth of a child as defined by BabyConnect.
| |
− | This groups findings and procedures related to a particular child in a delivery - important in multiple births. A pregnancy can lead to one delivery Procedure and one or multiple birth Procedures. In multiple birth, multiple birth instances point to the same delivery Procedure. A birth also provides the relation between a child and its mother: The mother Patient is the subject of the delivery Procedure and the child Patient is the subject of the birth Procedure.
| |
− |
| |
− | A Birth has:
| |
− | * A partOf extension, pointing to the Delivery
| |
− | * The subject is the Child
| |
− | * The context is the Maternal Record EpisodeOfCare
| |
− | * The pregnancy is captured in the reasonReference
| |
− | |-
| |
− | ||bc-Child
| |
− | ||
| |
− | ||Patient
| |
− | ||[https://zibs.nl/wiki/Patient-v3.1(2017EN) Patient]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Child|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Patient profile for the child Patient as defined by BabyConnect.
| |
− | Child is a separate Patient.
| |
− | |-
| |
− | ||bc-ChildObservation
| |
− | ||[[Gebz:V1.3_FHIR_IG_bc-ChildObservation|Child-related Observation]]
| |
− | ||Observation
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ChildObservation|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An Observation profile describing child-related Observations (not captured in other existing profiles), as defined by BabyConnect. Child-related Observations, such as Apgar score and birthweight, pertain to the child Patient, which is the subject of the Observation. If the child is unborn and no patient record exists for the child, bc-FetusObservation should be used instead.
| |
− | * Child observations refer to the EpisodeOfCare with Observation.context.reference
| |
− | |-
| |
− | ||bc-DeliveryObservation
| |
− | ||[[Gebz:V1.3_FHIR_IG_bc-DeliveryObservation|Pregnancy-related disorder]]
| |
− | ||Observation
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DeliveryObservation|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An Observation profile describing delivery-related Observations, as defined by BabyConnect.
| |
− | Observations such as onset of labor or blood loss pertain to a delivery Procedure.
| |
− | * Delivery-related Observations use focus extension to point to the delivery Procedure they're about.
| |
− | * Delivery-related Observations refer to the EpisodeOfCare with Observation.context.reference
| |
− | |-
| |
− | ||bc-DeliveryProcedure
| |
− | ||
| |
− | ||Procedure
| |
− | ||[https://zibs.nl/wiki/Procedure-v4.1(2017EN) Procedure]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DeliveryProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Procedure profile describing the delivery (including uncomplicated natural births for consistency), as defined by BabyConnect. A pregnancy can lead to one delivery Procedure, even in multiple birth. The mother Patient is the subject of the delivery Procedure.
| |
− | * Delivery refers to the EpisodeOfCare with Procedure.context.reference
| |
− | * Delivery refers to the Pregnancy with Procedure.reasonReference.reference
| |
− |
| |
− | A delivery Procedure is related to one or more birth Procedures. The child Patient is the subject of the birth Procedure. In case of multiple birth, multiple birth Procedures will point to the same delivery Procedure.
| |
− | |-
| |
− | ||bc-DisorderOfChild
| |
− | ||[[Gebz:V1.3_FHIR_IG_bc-DisorderOfChild|Child disorder]]
| |
− | ||Condition
| |
− | ||[https://zibs.nl/wiki/Problem-v4.1(2017EN) Problem]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DisorderOfChild|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Condition profile describing child disorders as defined by BabyConnect.
| |
− | Child disorders, such as chromosomal and congenital abnormalities or other problems are disorders of the child. The subject is either the child Patient (in case the child is born or a fetal patient record is in place) or the woman Patient (in case the child is unborn and there is no fetal patient record in place). In the second case, use the bodySite reference extension to refer to the fetus.
| |
− | * Child disorders can refer to the EpisodeOfCare with Condition.context.reference
| |
− | * A ConceptMap is available to map verification status to accepted FHIR codes
| |
− | |-
| |
− | ||bc-DisorderOfLaborAndDelivery
| |
− | ||
| |
− | ||Condition
| |
− | ||[https://zibs.nl/wiki/Problem-v4.1(2017EN) Problem]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DisorderOfLaborAndDelivery|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Condition profile describing disorders and complications related to labor and delivery as defined by BabyConnect. These disorders are part of the delivery, which is defined in the part of extension.
| |
− | * Delivery-related Disorders use partOf extension to point to Condition they're about.
| |
− | * Delivery-related Conditions refer to the EpisodeOfCare with Observation.context.reference
| |
− | |-
| |
− | ||bc-DisorderOfPregnancy
| |
− | ||[[Gebz:V1.3_FHIR_IG_bc-DisorderOfPregnancy|Pregnancy-related disorder]]
| |
− | ||Condition
| |
− | ||[https://zibs.nl/wiki/Problem-v4.1(2017EN) Problem]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DisorderOfPregnancy|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Condition profile describing disorders related to a pregnancy as defined by BabyConnect. For example, Conditions such as cholestasis and hypertension do not (only) pertain to the Patient but to a particular pregnancy.
| |
− | * Pregnancy-related Observations use partOf extension to point to Condition they're about.
| |
− | * In some cases the partOf Condition may not be available. The BGZ for instance does not relate Conditions to particular pregnancies.
| |
− | * Pregnancy-related Conditions refer to the EpisodeOfCare with Observation.context.reference
| |
− | |-
| |
− | ||bc-DisorderPostPartum
| |
− | ||
| |
− | ||Condition
| |
− | ||[https://zibs.nl/wiki/Problem-v4.1(2017EN) Problem]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-DisorderPostPartum|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Condition profile describing post partum disorders or complications as defined by BabyConnect. Post partum disorders, such as post partum depression, occur after delivery and are related to the Delivery Procedure.
| |
− | * A partOf extension is used to point to the Delivery.
| |
− | * The context is the Maternal Record or an Encounter.
| |
− | |-
| |
− | ||bc-Encounter
| |
− | ||
| |
− | ||Encounter
| |
− | ||[https://zibs.nl/wiki/HCIM_Release_2017(EN) Encounter]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Encounter|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An Encounter profile describing birthcare related encounters as defined by BabyConnect. The woman Patient is the subject of the Encounter.
| |
− | * Encounter.type specifies the type of encounter, e.g. prenatal visit, postnatal follow up or counseling.
| |
− | * Encounter.episodeOfCare points to the maternal record that is the context of the Encounter
| |
− | * Encounter.diagnosis points to the pregnancy (and optional other Conditions)
| |
− | * Encounter.serviceProvider points to the responsible Organization for the Encounter
| |
− | |-
| |
− | ||bc-FetalHeartRate
| |
− | ||
| |
− | ||Observation
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-FetalHeartRate|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An Observation profile describing fetal heart rate as defined by BabyConnect. The base definition is a fetus-related Observation. Fetus-related Observations are Observations about a fetus, which is the focus of the Observation (extension). Fetus identification is necessary in these Observations, especially in multiple pregnancy. There are two ways of using this profile depending on the presence of a patient / fetus record for the unborn child:
| |
− | # A patient / fetus record is present. The subject of the Observation is the (unborn) child Patient. The focus extension can be left blank.
| |
− | # A patient / fetus record is not present. The subject of the Observation is the woman Patient. The focus extension refers to the fetus BodySite.
| |
− | |-
| |
− | ||bc Fetus
| |
− | ||
| |
− | ||BodySite
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Fetus|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A BodySite profile as defined by BabyConnect.
| |
− | This BodySite profile refers to the unborn fetus in case no fetal record (yet) exists. In case a fetal record is created the unborn fetus will be registered as a (child) Patient.
| |
− | |-
| |
− | ||bc-MaternalObservation
| |
− | ||[[Gebz:V1.3_FHIR_IG_bc-MaternalObservation|Patient-related Observation]]
| |
− | ||Observation
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalObservation|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An Observation profile describing patient-related Observations, which are not captured in other existing profiles, as defined by BabyConnect.
| |
− | Patient-related Observations are findings related to the (pregnant) woman, before, during or after pregnancy childbirth. The pregnant woman is the subject, the context is the pregnancy file (EpisodeOfCare). Examples are risk status or maternal ultrasound observations.
| |
− | |-
| |
− | ||bc-MaternalRecord
| |
− | ||
| |
− | ||EpisodeOfCare
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MaternalRecord|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An EpisodeOfCare profile describing a maternal record (or pregnancy file) as defined by BabyConnect.
| |
− | Each pregnancy is a Condition. It is also represented as an EpisodeOfCare (maternal record) for each involved Organization. The maternal record defines care responsibility for a specific period of time and groups all data related to this period of care. It includes references to an Organization and responsible Practitioner.
| |
− |
| |
− | The maternal record defines care responsibility for a specific period of time and groups all data related to this period of care:
| |
− | # The (overarching) maternal record groups all data related to one pregnancy (.type = 364320009)
| |
− | # A sub record groups all data related to a specific perinatal period within the pregnancy (.type contains a code for the perinatal period and .partOf contains a reference to the overarching maternal record)
| |
− |
| |
− | Relations between the pregnancy (Condition) and the overarching maternal record (EpisodeOfCare):
| |
− | * Condition points to the EpisodeOfCare through a EpisodeOfCare.context.reference element. (Note: different providers may each have their own Condition resource.)
| |
− | * EpisodeOfCare points to the Condition through a EpisodeOfCare.diagnosis.condition element.
| |
− | * Condition points to the Patient with Condition.subject.reference
| |
− | * Condition.status must be 'active' for ongoing pregnancies and 'inactive' for past ones.
| |
− | |-
| |
− | ||bc-MotherOf
| |
− | ||
| |
− | ||RelatedPerson
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-MotherOf|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A RelatedPerson profile describing the relation between mother and child as defined by BabyConnect.
| |
− | The RelatedPerson is the mother, which is a related person of the child Patient.
| |
− | * The RelatedPerson.patient refers to the child Patient
| |
− | * The RelatedPerson.link refers to the mother Patient, RelatedPerson.link.type is set to seealso
| |
− | |-
| |
− | ||bc-ObstetricProcedure
| |
− | ||
| |
− | ||Procedure
| |
− | ||[https://zibs.nl/wiki/Procedure-v4.1(2017EN) Procedure]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-ObstetricProcedure|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Procedure profile describing obstetric procedures, as defined by BabyConnect. Obstetric procedures are procedures related to pregnancy, birth and delivery, such as vacuum delivery.
| |
− | * For obstetric procedures related to the pregnancy, use Procedure.reasonReference
| |
− | * For obstetric procedures related to birth and delivery, use the (optional) partOf extension to point to the Delivery (maternal data) or the Birth (child-specific data)
| |
− | * The context is the Maternal Record or an Encounter
| |
− | |-
| |
− | ||bc-PregnancyObservation
| |
− | ||[[Gebz:V1.3_FHIR_IG_bc-PregnancyObservation|Pregnancy-related Observation]]
| |
− | ||Observation
| |
− | ||
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-PregnancyObservation|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||An Observation profile describing pregnancy-related Observations, as defined by BabyConnect.
| |
− | Observations such as gravidity and parity do not (only) pertain to the Patient but also to a particular pregnancy.
| |
− | * Pregnancy-related Observations use the focus extension to point to the Condition they are about. Without this, all gravidities would only be Observations about a Patient.
| |
− | * Pregnancy-related Observations refer to the EpisodeOfCare with Observation.context.reference
| |
− | |-
| |
− | ||bc-Woman
| |
− | ||
| |
− | ||Patient
| |
− | ||[https://zibs.nl/wiki/Patient-v3.1(2017EN) Patient]
| |
− | ||{{Simplifier|http://nictiz.nl/fhir/StructureDefinition/bc-Woman|nictiz.fhir.nl.stu3.geboortezorg|pkgVersion=1.3.0}}
| |
− | ||A Patient profile describing the woman who is or was pregnant as defined by BabyConnect.
| |
− | The pregnant woman, a FHIR patient, is the core of each pregnancy.
| |
− | |}
| |
− |
| |
− | =Release notes=
| |
− | Release notes can be found on the [[MedMij:Vprepub-2020.01/Ontwerp_Geboortezorg#Release_Notes|functional design page]].
| |
− |
| |
− | =Support=
| |
− | For questions and change requests regarding this IG, please create a ticket in [https://bits.nictiz.nl/projects/GZ BITS].
| |