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 ServiceRequest Pathology
ServiceRequest |
id : example-servicerequest-pathology-ca-core-2 |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/servicerequest-ca-core |
identifier |
system : http://example.ca/NamingSystem/ServiceRequest |
value : SR789012 |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/observation-category |
code : laboratory |
code |
coding |
system : http://snomed.info/sct |
code : 86273004 |
display : Biopsy (Procedure) |
subject |
reference : Patient/example-patient-ca-core |
encounter |
reference : Encounter/example-encounter-ca-core |
authoredOn : 2024-03-27T09:15:00-07:00 |
requester |
reference : Practitioner/example-practitioner-ca-core |
performer |
reference : Practitioner/example-practitioner-ca-core-2 |
locationReference |
reference : Location/example-location-ca-core |
reasonCode |
coding |
system : http://snomed.info/sct |
code : 363358000 |
display : Malignant neoplasm of lung (disorder) |
text : Lung cancer biopsy |
note |
author |
reference : Practitioner/example-practitioner-ca-core |
text : Please prioritize this biopsy for rapid processing |
<ServiceRequest xmlns="http://hl7.org/fhir"> <id value="example-servicerequest-pathology-ca-core-2" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/servicerequest-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/ServiceRequest" /> <value value="SR789012" /> </identifier> <status value="active" /> <intent value="order" /> <category> <coding> <system value="http://terminology.hl7.org/CodeSystem/observation-category" /> <code value="laboratory" /> </coding> </category> <code> <coding> <system value="http://snomed.info/sct" /> <code value="86273004" /> <display value="Biopsy (Procedure)" /> </coding> </code> <subject> <reference value="Patient/example-patient-ca-core" /> </subject> <encounter> <reference value="Encounter/example-encounter-ca-core" /> </encounter> <authoredOn value="2024-03-27T09:15:00-07:00" /> <requester> <reference value="Practitioner/example-practitioner-ca-core" /> </requester> <performer> <reference value="Practitioner/example-practitioner-ca-core-2" /> </performer> <locationReference> <reference value="Location/example-location-ca-core" /> </locationReference> <reasonCode> <coding> <system value="http://snomed.info/sct" /> <code value="363358000" /> <display value="Malignant neoplasm of lung (disorder)" /> </coding> <text value="Lung cancer biopsy" /> </reasonCode> <note> <authorReference> <reference value="Practitioner/example-practitioner-ca-core" /> </authorReference> <text value="Please prioritize this biopsy for rapid processing" /> </note> </ServiceRequest>
{ "resourceType": "ServiceRequest", "id": "example-servicerequest-pathology-ca-core-2", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/servicerequest-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/ServiceRequest", "value": "SR789012" } ], "status": "active", "intent": "order", "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/observation-category", "code": "laboratory" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "86273004", "display": "Biopsy (Procedure)" } ] }, "subject": { "reference": "Patient/example-patient-ca-core" }, "encounter": { "reference": "Encounter/example-encounter-ca-core" }, "authoredOn": "03/27/2024 16:15:00", "requester": { "reference": "Practitioner/example-practitioner-ca-core" }, "performer": [ { "reference": "Practitioner/example-practitioner-ca-core-2" } ], "locationReference": [ { "reference": "Location/example-location-ca-core" } ], "reasonCode": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "363358000", "display": "Malignant neoplasm of lung (disorder)" } ], "text": "Lung cancer biopsy" } ], "note": [ { "authorReference": { "reference": "Practitioner/example-practitioner-ca-core" }, "text": "Please prioritize this biopsy for rapid processing" } ] }