@prefix fhir: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Condition ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example-03"] ; # fhir:meta [ fhir:profile ( [ fhir:v "https://nrces.in/ndhm/fhir/r4/StructureDefinition/Condition"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: Condition example-03

code: Cardiac arrest, unspecified

subject: ABC Male, DoB: 1981-01-12 ( Medical record number: 22-7225-4829-5255)

onset: 1days

recorder: Practitioner Dr. DEF

"^^rdf:XMLLiteral ] ; # fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "http://hl7.org/fhir/sid/icd-10"^^xsd:anyURI ] ; fhir:code [ fhir:v "I46.9" ] ; fhir:display [ fhir:v "Cardiac arrest, unspecified" ] ] ) ] ; # fhir:subject [ fhir:link ; fhir:reference [ fhir:v "Patient/example-01" ] ] ; # fhir:onset [ a fhir:string ; fhir:v "1days" ] ; # fhir:recorder [ fhir:link ; fhir:reference [ fhir:v "Practitioner/example-01" ] ] . # # -------------------------------------------------------------------------------------