@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:EnrollmentRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "22345"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
A human-readable rendering of the EnrollmentRequest.
" ]; fhir:EnrollmentRequest.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://happyvalley.com/enrollmentrequest" ]; fhir:Identifier.value [ fhir:value "EN22345" ] ]; fhir:EnrollmentRequest.status [ fhir:value "active"]; fhir:EnrollmentRequest.created [ fhir:value "2014-08-16"^^xsd:date]; fhir:EnrollmentRequest.insurer [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/2" ] ]; fhir:EnrollmentRequest.provider [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/1" ] ]; fhir:EnrollmentRequest.candidate [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/1" ] ]; fhir:EnrollmentRequest.coverage [ fhir:link ; fhir:Reference.reference [ fhir:value "Coverage/9876B1" ] ] . a fhir:Organization . a fhir:Organization . a fhir:Patient . a fhir:Coverage . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------