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

Generated Narrative: Coverage

Resource Coverage "example-01"

Profile: Coverage

identifier: id: SP12345678

status: active

type: PAY (Coverage SelfPay Codes#pay)

subscriber: Patient/example-01 ""

beneficiary: Patient/example-01 ""

relationship: Self (SubscriberPolicyholder Relationship Codes#self)

period: 2022-09-17 --> 2025-03-17

payor: Organization/example-01 "XYZ Lab Pvt.Ltd."

" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "http://hospitalx.com/selfpayagreement"^^xsd:anyURI ] ; fhir:value [ fhir:v "SP12345678" ] ] ) ; # fhir:status [ fhir:v "active"] ; # fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/coverage-selfpay"^^xsd:anyURI ] ; fhir:code [ fhir:v "pay" ] ; fhir:display [ fhir:v "PAY" ] ] ) ] ; # fhir:subscriber [ fhir:link ; fhir:reference [ fhir:v "Patient/example-01" ] ] ; # fhir:beneficiary [ fhir:link ; fhir:reference [ fhir:v "Patient/example-01" ] ] ; # fhir:relationship [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/subscriber-relationship"^^xsd:anyURI ] ; fhir:code [ fhir:v "self" ] ] ) ] ; # fhir:period [ fhir:start [ fhir:v "2022-09-17"^^xsd:date ] ; fhir:end [ fhir:v "2025-03-17"^^xsd:date ] ] ; # fhir:payor ( [ fhir:link ; fhir:reference [ fhir:v "Organization/example-01" ] ] ) . # # -------------------------------------------------------------------------------------