@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:DiagnosticReport; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-pgx"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "" ]; fhir:DiagnosticReport.basedOn [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "ServiceRequest/example-pgx" ] ]; fhir:DiagnosticReport.status [ fhir:value "final"]; fhir:DiagnosticReport.code [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "https://system/PGxReport" ]; fhir:Coding.code [ fhir:value "PGxReport" ]; fhir:Coding.display [ fhir:value "Pharmacogenetics Report" ] ]; fhir:CodeableConcept.text [ fhir:value "Pharmacogenetics Report" ] ]; fhir:DiagnosticReport.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/899962" ]; fhir:Reference.display [ fhir:value "Bob Smith" ] ]; fhir:DiagnosticReport.effectiveDateTime [ fhir:value "2016-10-15T12:34:56+11:00"^^xsd:dateTime]; fhir:DiagnosticReport.issued [ fhir:value "2016-10-20T14:00:05+11:00"^^xsd:dateTime]; fhir:DiagnosticReport.performer [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Organization/4829" ] ]; fhir:DiagnosticReport.result [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Observation/example-phenotype" ] ]; fhir:DiagnosticReport.presentedForm [ fhir:index 0; fhir:Attachment.contentType [ fhir:value "application/pdf" ]; fhir:Attachment.language [ fhir:value "en" ]; fhir:Attachment.data [ fhir:value "cGRmSW5CYXNlNjRCaW5hcnk="^^xsd:base64Binary ]; fhir:Attachment.hash [ fhir:value "571ef9c5655840f324e679072ed62b1b95eef8a0"^^xsd:base64Binary ]; fhir:Attachment.title [ fhir:value "Pharmacogenetics Report" ]; fhir:Attachment.creation [ fhir:value "2016-10-20T20:00:00+11:00"^^xsd:dateTime ] ] . a fhir:ServiceRequest . a fhir:Patient . a fhir:Organization . a fhir:Observation . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------