Publication Build: This will be filled in by the publication tooling
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:DocumentReference;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "123456"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference";
fhir:index 0;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"123456\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/core/STU3.1/StructureDefinition-us-core-documentreference.html\">US Core DocumentReference Profile</a></p></div><p><b>status</b>: current</p><p><b>type</b>: Letter <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#51852-2)</span></p><p><b>category</b>: Clinical Note <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://hl7.org/fhir/us/core/STU3.1/CodeSystem-us-core-documentreference-category.html\">US Core DocumentReferences Category Codes</a>#clinical-note)</span></p><p><b>subject</b>: <a href=\"Patient-1.html\">Patient/1</a> \" APPLESEED\"</p><p><b>date</b>: Oct 9, 2020 3:26:23 PM</p><p><b>author</b>: <a href=\"Organization-ProviderOrg1.html\">Organization/ProviderOrg1</a> \"Provider 1\"</p><p><b>custodian</b>: <a href=\"Organization-Payer1.html\">Organization/Payer1</a> \"Payer 1\"</p><blockquote><p><b>content</b></p><p><b>format</b>: urn:ihe:iti:xds:2017:mimeTypeSufficient (Details: http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem code null = 'null', stated as 'urn:ihe:iti:xds:2017:mimeTypeSufficient')</p></blockquote></div>"
];
fhir:DocumentReference.status [ fhir:value "current"];
fhir:DocumentReference.type [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:51852-2;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "51852-2" ] ]
];
fhir:DocumentReference.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category" ];
fhir:Coding.code [ fhir:value "clinical-note" ] ]
];
fhir:DocumentReference.subject [
fhir:Reference.reference [ fhir:value "Patient/1" ]
];
fhir:DocumentReference.date [ fhir:value "2020-10-09T15:26:23.217+00:00"^^xsd:dateTime];
fhir:DocumentReference.author [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Organization/ProviderOrg1" ]
];
fhir:DocumentReference.custodian [
fhir:Reference.reference [ fhir:value "Organization/Payer1" ]
];
fhir:DocumentReference.content [
fhir:index 0;
fhir:DocumentReference.content.attachment [
fhir:Attachment.contentType [ fhir:value "application/pdf" ];
fhir:Attachment.url [ fhir:value "/Binary/1-pdf" ];
fhir:Attachment.title [ fhir:value "Uri where the data can be found = [base]/Binary/1-pdf\nor base64encode document and include in content.attachment.data element" ] ];
fhir:DocumentReference.content.format [
fhir:Coding.system [ fhir:value "http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem" ];
fhir:Coding.display [ fhir:value "urn:ihe:iti:xds:2017:mimeTypeSufficient" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.