@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:RiskAssessment; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "population"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
\n

Todo - e.g. probable number of infections in a given region over a time period for a given disease based on vaccination rates and other factors

\n
" ]; fhir:DomainResource.contained [ a fhir:Group; fhir:index 0; fhir:Resource.id [ fhir:value "group1" ]; fhir:Group.type [ fhir:value "person" ]; fhir:Group.actual [ fhir:value "false"^^xsd:boolean ] ]; fhir:RiskAssessment.status [ fhir:value "final"]; fhir:RiskAssessment.subject [ fhir:Reference.reference [ fhir:value "#group1" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------