Draft preBallot - This specification is under preBallot review and subject to change. It should not be used for implementation purposes. . . . . For a full list of available versions, see the Directory of published versions
Example Procedure
Procedure |
id : example-procedure-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/procedure-ca-core |
identifier |
system : http://example.ca/NamingSystem/Procedure |
value : PROC123456 |
basedOn |
reference : ServiceRequest/example-servicerequest-ca-core |
status : completed |
code |
coding |
system : http://loinc.org |
code : 24627-2 |
display : CT Chest |
subject |
reference : Patient/example-patient-ca-core |
performed |
start : 2024-03-27T10:30:00-07:00 |
end : 2024-03-27T10:45:00-07:00 |
performer |
actor |
reference : PractitionerRole/example-practitionerrole-ca-core-3 |
location |
reference : Location/example-location-ca-core |
reasonReference |
reference : Condition/example-condition-ca-core |
report |
reference : DiagnosticReport/example-diagnosticreport-radiology-ca-core |
note |
text : CT scan completed with contrast. |
<Procedure xmlns="http://hl7.org/fhir"> <id value="example-procedure-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/procedure-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Procedure" /> <value value="PROC123456" /> </identifier> <basedOn> <reference value="ServiceRequest/example-servicerequest-ca-core" /> </basedOn> <status value="completed" /> <code> <coding> <system value="http://loinc.org" /> <code value="24627-2" /> <display value="CT Chest" /> </coding> </code> <subject> <reference value="Patient/example-patient-ca-core" /> </subject> <performedPeriod> <start value="2024-03-27T10:30:00-07:00" /> <end value="2024-03-27T10:45:00-07:00" /> </performedPeriod> <performer> <actor> <reference value="PractitionerRole/example-practitionerrole-ca-core-3" /> </actor> </performer> <location> <reference value="Location/example-location-ca-core" /> </location> <reasonReference> <reference value="Condition/example-condition-ca-core" /> </reasonReference> <report> <reference value="DiagnosticReport/example-diagnosticreport-radiology-ca-core" /> </report> <note> <text value="CT scan completed with contrast." /> </note> </Procedure>
{ "resourceType": "Procedure", "id": "example-procedure-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/procedure-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Procedure", "value": "PROC123456" } ], "basedOn": [ { "reference": "ServiceRequest/example-servicerequest-ca-core" } ], "status": "completed", "code": { "coding": [ { "system": "http://loinc.org", "code": "24627-2", "display": "CT Chest" } ] }, "subject": { "reference": "Patient/example-patient-ca-core" }, "performedPeriod": { "start": "03/27/2024 17:30:00", "end": "03/27/2024 17:45:00" }, "performer": [ { "actor": { "reference": "PractitionerRole/example-practitionerrole-ca-core-3" } } ], "location": { "reference": "Location/example-location-ca-core" }, "reasonReference": [ { "reference": "Condition/example-condition-ca-core" } ], "report": [ { "reference": "DiagnosticReport/example-diagnosticreport-radiology-ca-core" } ], "note": [ { "text": "CT scan completed with contrast." } ] }