@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:ChargeItem ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "Consultation-example-01"] ; # fhir:meta [ fhir:versionId [ fhir:v "1" ] ; fhir:lastUpdated [ fhir:v "2023-08-22T09:40:00.181+05:30"^^xsd:dateTime ] ; fhir:profile ( [ fhir:v "https://nrces.in/ndhm/fhir/r4/StructureDefinition/ChargeItem"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: ChargeItem

Resource ChargeItem "Consultation-example-01" Version "1" Updated "2023-08-22 09:40:00+0530"

Profile: ChargeItem

status: billed

code: Consultation (Billing Codes#00)

subject: Patient/example-01 ""

Performers

-Actor
*Practitioner/example-01 ""

quantity: 1.0

product: Lung X-ray (SNOMED CT#303931008)

" ] ; # fhir:status [ fhir:v "billed"] ; # fhir:code [ fhir:coding ( [ fhir:system [ fhir:v "https://nrces.in/ndhm/fhir/r4/CodeSystem/ndhm-billing-codes"^^xsd:anyURI ] ; fhir:code [ fhir:v "00" ] ; fhir:display [ fhir:v "Consultation" ] ] ) ] ; # fhir:subject [ fhir:link ; fhir:reference [ fhir:v "Patient/example-01" ] ] ; # fhir:performer ( [ fhir:actor [ fhir:link ; fhir:reference [ fhir:v "Practitioner/example-01" ] ] ] ) ; # fhir:quantity [ fhir:value [ fhir:v "1.0"^^xsd:decimal ] ] ; # fhir:product [ a fhir:CodeableConcept ; fhir:coding ( [ a sct:303931008 ; fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; fhir:code [ fhir:v "303931008" ] ; fhir:display [ fhir:v "Lung X-ray" ] ] ) ] . # # -------------------------------------------------------------------------------------