@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:ServiceRequest; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "benchpress"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative

Resource "benchpress"

status: active

intent: plan

code: Bench Press (regime/therapy) (SNOMED CT#229115003)

subject: Patient/example "Peter CHALMERS"

occurrence: Count 20 times, Do 3 per 1 weeks

patientInstruction: Start with 30kg 10-15 repetitions for three sets and increase in increments of 5kg when you feel ready

" ]; fhir:ServiceRequest.status [ fhir:value "active"]; fhir:ServiceRequest.intent [ fhir:value "plan"]; fhir:ServiceRequest.code [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:229115003; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "229115003" ]; fhir:Coding.display [ fhir:value "Bench Press (regime/therapy)" ] ] ]; fhir:ServiceRequest.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:ServiceRequest.occurrenceTiming [ fhir:Timing.repeat [ fhir:Timing.repeat.count [ fhir:value "20"^^xsd:positiveInteger ]; fhir:Timing.repeat.countMax [ fhir:value "30"^^xsd:positiveInteger ]; fhir:Timing.repeat.frequency [ fhir:value "3"^^xsd:positiveInteger ]; fhir:Timing.repeat.period [ fhir:value "1"^^xsd:decimal ]; fhir:Timing.repeat.periodUnit [ fhir:value "wk" ] ] ]; fhir:ServiceRequest.patientInstruction [ fhir:value "Start with 30kg 10-15 repetitions for three sets and increase in increments of 5kg when you feel ready"] . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------