Ophthalmology Implementation Guide
0.2.0 - CI Build
Ophthalmology Implementation Guide - Local Development build (v0.2.0). See the Directory of published versions
@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 -------------------------------------------------------------------
a fhir:Bundle;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "h1"];
fhir:Bundle.type [ fhir:value "collection"];
fhir:Bundle.entry [
fhir:index 0;
fhir:Bundle.entry.fullUrl [ fhir:value "http://somewhere.org/fhir/uv/myig/Provenance/h1-1" ];
fhir:Bundle.entry.resource <http://somewhere.org/fhir/uv/myig/Provenance/h1-1>
].
<http://somewhere.org/fhir/uv/myig/Provenance/h1-1> a fhir:Provenance;
fhir:Resource.id [ fhir:value "h1-1"];
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><h3>Ids</h3><table class=\"grid\"><tr><td>-</td></tr><tr><td>*</td></tr></table><p><b>target</b>: <a href=\"StructureDefinition/myObservation\">StructureDefinition/myObservation</a></p><p><b>occurred</b>: 2015-11-30</p><p><b>reason</b>: <span title=\"Codes: \">Add \"conductible\" property to ActRelationshipType and ParticipationType codes.for ContextConduction RIM Change. And create Concept domain CodeSystem and ValueSet for ContextConductionStyle</span></p><p><b>activity</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v3-DataOperation UPDATE}\">revise</span></p><blockquote><p><b>agent</b></p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/provenance-participant-type author}\">Author</span></p><p><b>who</b>: <span>Rob Hausam</span></p></blockquote><blockquote><p><b>agent</b></p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/provenance-participant-type verifier}\">Verifier</span></p><p><b>who</b>: <span>Vocab</span></p></blockquote></div>"
];
fhir:Provenance.target [
fhir:index 0;
fhir:Reference.reference [ fhir:value "StructureDefinition/myObservation" ]
];
fhir:Provenance.occurredDateTime [ fhir:value "2015-11-30"^^xsd:date];
fhir:Provenance.reason [
fhir:index 0;
fhir:CodeableConcept.text [ fhir:value "Add \"conductible\" property to ActRelationshipType and ParticipationType codes.for ContextConduction RIM Change. And create Concept domain CodeSystem and ValueSet for ContextConductionStyle" ]
];
fhir:Provenance.activity [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-DataOperation" ];
fhir:Coding.code [ fhir:value "UPDATE" ] ]
];
fhir:Provenance.agent [
fhir:index 0;
fhir:Provenance.agent.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/provenance-participant-type" ];
fhir:Coding.code [ fhir:value "author" ] ] ];
fhir:Provenance.agent.who [
fhir:Reference.display [ fhir:value "Rob Hausam" ] ]
], [
fhir:index 1;
fhir:Provenance.agent.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/provenance-participant-type" ];
fhir:Coding.code [ fhir:value "verifier" ] ] ];
fhir:Provenance.agent.who [
fhir:Reference.display [ fhir:value "Vocab" ] ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.