Gebz:FHIR bc-DisorderOfLaborAndDelivery: verschil tussen versies

Uit informatiestandaarden
Naar navigatie springen Naar zoeken springen
(Nieuwe pagina aangemaakt met '=bc-DisorderOfLaborAndDelivery= This is a generic profile for conditions related to a pregnancy. Each bc-DisorderOfLaborAndDelivery must have: * a code, specifying...')
 
Regel 7: Regel 7:
  
 
Each bc-DisorderOfLaborAndDelivery may have:
 
Each bc-DisorderOfLaborAndDelivery may have:
* a reference to the Pregnancy Condition (using the part of extension). The preferred option for birthcare systems is to include this, but this cannot be guaranteed for external data (such as BGZ).  
+
* a reference to the Delivery Procedure (using the part of extension). The preferred option for birthcare systems is to include this, but this cannot be guaranteed for external data (such as BGZ).  
  
 
==Profile==
 
==Profile==
Regel 31: Regel 31:
 
     <extension url="http://hl7.org/fhir/StructureDefinition/condition-partOf">
 
     <extension url="http://hl7.org/fhir/StructureDefinition/condition-partOf">
 
         <valueReference>
 
         <valueReference>
             <reference value="[[reference to the pregnancy | Condition/wouden-zwanger1]]" />
+
             <reference value="[[reference to the delivery procedure | Procedure/wouden-bevalling1]]" />
 
         </valueReference>
 
         </valueReference>
 
     </extension>
 
     </extension>

Versie van 20 aug 2020 11:25

bc-DisorderOfLaborAndDelivery

This is a generic profile for conditions related to a pregnancy.

Each bc-DisorderOfLaborAndDelivery must have:

  • a code, specifying the condition
  • a subject, the woman in labor

Each bc-DisorderOfLaborAndDelivery may have:

  • a reference to the Delivery Procedure (using the part of extension). The preferred option for birthcare systems is to include this, but this cannot be guaranteed for external data (such as BGZ).

Profile

The entire profile can be found at: bc-LaborAndDelivery

Pattern

This is a patten for pregnancy-related Conditions in Birthcare. Note that the meta.profile element should preferably include bc-DisorderOfLaborAndDelivery. Again, this may be the case for BGZ.

All FHIR instances which follow this pattern will be valid LaborAndDelivery disorder. Other fields from the FHIR profile may be present: this description is a minimal representation.

[Legend]

XML fragment

This is a recipe for pregnancy-related disorders in Birthcare. Note that the meta.profile element should preferably be bc-DisorderOfLaborAndDelivery.

<Condition xmlns="http://hl7.org/fhir">
    <id value="[[a unique id]]"/>
    <meta>
        <profile value="http://nictiz.nl/fhir/StructureDefinition/bc-DisorderOfLaborAndDelivery"/>
    </meta>
    <extension url="http://hl7.org/fhir/StructureDefinition/condition-partOf">
        <valueReference>
            <reference value="[[reference to the delivery procedure | Procedure/wouden-bevalling1]]" />
        </valueReference>
    </extension>
    [[# clinicalStatus is optional, only when known ]]
    <clinicalStatus value="[[active | recurrence | inactive | remission | resolved]]"/> 
    [[/ clinicalStatus ]]
    <code>
        <coding> 
            <system value="[[system, preferably from | http://snomed.info/sct]]"/> 
            <code value="[[code, to be taken from the relevant valuesets in ART-DECOR | 237320005"/> 
            <display value="[[display | Failure to progress in first stage of labor (finding)]]"/> 
        </coding> 
    </code> 
    <subject>
        <reference value="[[reference to the Woman Patient | Patient/XXX-VDWOUDEN" />
        <display value="[[display of reference | Patient van der Wouden]]" />
    </subject>
    <context>
        <reference value="[[reference to the EpisodeOfCare | EpisodeOfCare/wouden-dossier-zwanger1]]"/>
    </context>
</Condition>