DwObservationVitals

Purpose

This resource will provide the standard set of vitals recorded within the each EMR.

idS Σ1..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
textS0..1Narrative
contained0..*Resource
id0..1string
extensionI0..*Extension
url1..1uriFixed Value
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemΣ0..1uriBinding
versionΣ0..1string
codeΣ0..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
modifierExtension?! I0..*Extension
identifierS Σ0..*Identifier
basedOnΣ I0..*Reference(CarePlan | DeviceRequest | ImmunizationRecommendation | MedicationRequest | NutritionOrder | ServiceRequest)
partOfΣ I0..*Reference(MedicationAdministration | MedicationDispense | MedicationStatement | Procedure | Immunization | ImagingStudy)
statusS Σ ?!1..1codeBindingFixed Value
categoryS1..1CodeableConceptBindingFixed Value
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemS Σ0..1uriFixed Value
versionΣ0..1string
codeS Σ0..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textS Σ1..1string
subjectS Σ I1..1Reference(DwPatient)
focusΣ I0..*Reference(Resource)
encounterS Σ I0..1Reference(Encounter)
effectiveDateTimedateTime
effectivePeriodPeriod
effectiveTimingTiming
effectiveInstantinstant
issuedΣ0..1instant
performerΣ I0..*Reference(Practitioner | PractitionerRole | Organization | CareTeam | Patient | RelatedPerson)
valueQuantityQuantity
valueCodeableConceptCodeableConcept
valueStringstring
valueBooleanboolean
valueIntegerinteger
valueRangeRange
valueRatioRatio
valueSampledDataSampledData
valueTimetime
valueDateTimedateTime
valuePeriodPeriod
dataAbsentReasonI0..1CodeableConceptBinding
interpretation0..*CodeableConceptBinding
noteS0..*Annotation
bodySiteS0..1CodeableConcept
method0..1CodeableConcept
specimenI0..1Reference(Specimen)
deviceI0..1Reference(Device | DeviceMetric)
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
lowI0..1SimpleQuantity
highI0..1SimpleQuantity
type0..1CodeableConceptBinding
appliesTo0..*CodeableConcept
ageI0..1Range
text0..1string
hasMemberΣ I0..*Reference(Observation | QuestionnaireResponse | MolecularSequence)
derivedFromΣ I0..*Reference(DocumentReference | ImagingStudy | Media | QuestionnaireResponse | Observation | MolecularSequence)
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
codeΣ1..1CodeableConcept
valueQuantityQuantity
valueCodeableConceptCodeableConcept
valueStringstring
valueBooleanboolean
valueIntegerinteger
valueRangeRange
valueRatioRatio
valueSampledDataSampledData
valueTimetime
valueDateTimedateTime
valuePeriodPeriod
dataAbsentReasonI0..1CodeableConceptBinding
interpretation0..*CodeableConceptBinding
referenceRange0..*see (referenceRange)

Usage note

  • status - Historical load do not send the deleted entries. For delta send all updated resource including deleted PSS -->FHIR Needs Review

    FHIR MA PSS CHR
    final Active unfinished ?
    amended ? Updated - only if delta is being sent ?
    entered-in-error deleted - only if delta is being send deleted - only if delta is being sent ?
    unknown If "unavailable" value If "unavailable" value ?

effective Standard vitals will be provided as effective.dateTime.

note This will be supported by MA as there is a single note per vital. PSS does not have a separate vital note as vitals are entered in the context of an encounter note. PSS will not convey comments.

bodySite When body site for the vital is recorded this will be provided.

component This will be used to convey the systolic and diastolic values of a blood presssure reading.

Bundle

ObservationVitals

Example

{
      "resourceType": "Observation",
      "id": "ma-labtestsk1-Observation-vitals-1697255",
      "meta": {
         "source": "urn:telus:emr:ma:labtestsk1",
         "lastUpdated": "2023-04-21T13:22:04.000Z",
         "security": [
            {
               "system": "http://terminology.hl7.org/CodeSystem/v3-Confidentiality",
               "code": "N",
               "display": "normal"
            }
         ]
      },
      "identifier": [
         {
            "system": "urn:telus:emr:ma:labtestsk1:Observation",
            "use": "usual",
            "value": "vitals-1697255"
         }
      ],
      "status": "final",
      "category": [
         {
            "coding": [
               {
                  "system": "http://hl7.org/fhir/observation-category",
                  "code": "vital-signs",
                  "display": "Vital Signs"
               }
            ]
         }
      ],
      "code": {
         "text": "Blood Pressure Panel"
      },
      "subject": {
         "reference": "Patient/ma-labtestsk1-Patient-16785",
         "type": "Patient"
      },
      "encounter": {
         "reference": "Encounter/ma-labtestsk1-Encounter-2359830",
         "type": "Encounter"
      },
      "effectiveDateTime": "2022-09-28",
      "issued": "2022-09-29T00:45:08.000Z",
      "component": [
         {
            "code": {
               "coding": [
                  {
                     "system": "https://loinc.org",
                     "code": "8464-4",
                     "display": "Diastolic blood pressure",
                     "userSelected": false
                  }
               ]
            },
            "valueQuantity": {
               "value": 80,
               "unit": "mmHg",
               "system": "http://unitsofmeasure.org",
               "code": "mm[Hg]"
            }
         },
         {
            "code": {
               "coding": [
                  {
                     "system": "https://loinc.org",
                     "code": "8480-6",
                     "display": "Systolic blood pressure",
                     "userSelected": false
                  }
               ]
            },
            "valueQuantity": {
               "value": 120,
               "unit": "mmHg",
               "system": "http://unitsofmeasure.org",
               "code": "mm[Hg]"
            }
         }
      ],
      "interpretation": [],
      "performer": []
   }