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 DocumentReference
DocumentReference |
id : example-documentreference-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/documentreference-ca-core |
identifier |
system : http://example.ca/NamingSystem/DocumentReference |
value : DOC123456 |
status : current |
type |
coding |
system : http://snomed.info/sct |
code : 773590002 |
display : Dietetic care plan (record artifact) |
subject |
reference : example-patient-ca-core |
date : 2024-03-27T10:00:00-07:00 |
author |
reference : example-practitioner-ca-core |
identifier |
system : http://example.ca/NamingSystem/Practitioner |
value : PR123456 |
custodian |
reference : Organization/example-organization-ca-core |
content |
attachment |
contentType : application/pdf |
language : en-CA |
data : ZmFrZSByZXBvcnQ= |
url : http://example.org/documents/diabetes-care-plan.pdf |
title : Dietetic Care Plan |
context |
related |
reference : FamilyMemberHistory/example-familymemberhistory-ca-core |
identifier |
system : http://example.ca/NamingSystem/FamilyMemberHistory |
value : COND123456 |
<DocumentReference xmlns="http://hl7.org/fhir"> <id value="example-documentreference-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/documentreference-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/DocumentReference" /> <value value="DOC123456" /> </identifier> <status value="current" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="773590002" /> <display value="Dietetic care plan (record artifact)" /> </coding> </type> <subject> <reference value="example-patient-ca-core" /> </subject> <date value="2024-03-27T10:00:00-07:00" /> <author> <reference value="example-practitioner-ca-core" /> <identifier> <system value="http://example.ca/NamingSystem/Practitioner" /> <value value="PR123456" /> </identifier> </author> <custodian> <reference value="Organization/example-organization-ca-core" /> </custodian> <content> <attachment> <contentType value="application/pdf" /> <language value="en-CA" /> <data value="ZmFrZSByZXBvcnQ=" /> <url value="http://example.org/documents/diabetes-care-plan.pdf" /> <title value="Dietetic Care Plan" /> </attachment> </content> <context> <related> <reference value="FamilyMemberHistory/example-familymemberhistory-ca-core" /> <identifier> <system value="http://example.ca/NamingSystem/FamilyMemberHistory" /> <value value="COND123456" /> </identifier> </related> </context> </DocumentReference>
{ "resourceType": "DocumentReference", "id": "example-documentreference-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/documentreference-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/DocumentReference", "value": "DOC123456" } ], "status": "current", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "773590002", "display": "Dietetic care plan (record artifact)" } ] }, "subject": { "reference": "example-patient-ca-core" }, "date": "03/27/2024 17:00:00", "author": [ { "reference": "example-practitioner-ca-core", "identifier": { "system": "http://example.ca/NamingSystem/Practitioner", "value": "PR123456" } } ], "custodian": { "reference": "Organization/example-organization-ca-core" }, "content": [ { "attachment": { "contentType": "application/pdf", "language": "en-CA", "data": "ZmFrZSByZXBvcnQ=", "url": "http://example.org/documents/diabetes-care-plan.pdf", "title": "Dietetic Care Plan" } } ], "context": { "related": [ { "reference": "FamilyMemberHistory/example-familymemberhistory-ca-core", "identifier": { "system": "http://example.ca/NamingSystem/FamilyMemberHistory", "value": "COND123456" } } ] } }