@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Media; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "sound"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "Sound recording of speech example for Patient Henry Levin (MRN 12345):" ]; fhir:Media.status [ fhir:value "completed"]; fhir:Media.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/xcda" ] ]; fhir:Media.operator [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/xcda-author" ] ]; fhir:Media.duration [ fhir:value "65"^^xsd:decimal]; fhir:Media.content [ fhir:Element.id [ fhir:value "a1" ]; fhir:Attachment.contentType [ fhir:value "audio/mpeg" ]; fhir:Attachment.data [ fhir:value "dG9vIGJpZyB0b28gaW5jbHVkZSB0aGUgd2hvbGU="^^xsd:base64Binary ] ] . a fhir:Patient . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------