US Core Implementation Guide, published by HL7 International / Cross-Group Projects. This guide is not an authorized publication; it is the continuous build for version 10.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/US-Core/ and changes regularly. See the Directory of published versions
: Colonoscopy Example - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@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 -------------------------------------------------------------------
<http://hl7.org/fhir/CarePlan/colonoscopy> a fhir:CarePlan ;
fhir:nodeRole fhir:treeRoot ;
fhir:Resource.id [ fhir:value "colonoscopy"] ;
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|10.0.0-ballot" ;
fhir:index 0 ;
fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan|10.0.0-ballot>
]
] ;
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "additional" ] ;
fhir:Narrative.div "<div xml:lang=\"en\" xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\">\n <strong>Subject:</strong> Amy Shaw\n \n <strong>Author:</strong> Dr Ronald Bone\n \n <strong>Assessment</strong>\n <ol>\n <li>Recurrent GI bleed of unknown etiology; hypotension perhaps secondary to this but as likely secondary to polypharmacy.</li>\n <li>Acute on chronic anemia secondary to #1.</li>\n <li>Azotemia, acute renal failure with volume loss secondary to #1.</li>\n <li>Hyperkalemia secondary to #3 and on ACE and K+ supplement.</li>\n <li>Other chronic diagnoses as noted above, currently stable.</li>\n </ol>\n <table>\n <thead>\n <tr>\n <th>Planned Activity</th>\n <th>Planned Date</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>Colonoscopy</td>\n <td>April 21, 2000</td>\n </tr>\n </tbody>\n </table>\n </div>"
] ;
fhir:CarePlan.status [ fhir:value "active"] ;
fhir:CarePlan.intent [ fhir:value "order"] ;
fhir:CarePlan.subject [
fhir:link <http://hl7.org/fhir/Patient/example> ;
fhir:Reference.reference [ fhir:value "Patient/example" ] ;
fhir:Reference.display [ fhir:value "Amy Shaw" ]
] ;
fhir:CarePlan.contributor [
fhir:index 0 ;
fhir:link <http://hl7.org/fhir/Practitioner/practitioner-1> ;
fhir:Reference.reference [ fhir:value "Practitioner/practitioner-1" ] ;
fhir:Reference.display [ fhir:value "Dr Ronald Bone" ]
] .
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
<http://hl7.org/fhir/Practitioner/practitioner-1> a fhir:Practitioner .
# - ontology header ------------------------------------------------------------
<http://hl7.org/fhir/CarePlan/colonoscopy.ttl> a owl:Ontology ;
owl:imports fhir:fhir.ttl ;
owl:versionIRI <http://build.fhir.org/CarePlan/colonoscopy.ttl> .