@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:EvidenceReport;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "[Put rendering here]
"
];
fhir:EvidenceReport.status [ fhir:value "draft"];
fhir:EvidenceReport.subject [
fhir:EvidenceReport.subject.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "This is just an example." ]
]
] .
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl;
owl:versionIRI .
# -------------------------------------------------------------------------------------