FHIR Implementation Guide for ABDM 3.1.0 - active
FHIR Implementation Guide for ABDM - Local Development build (v3.1.0). See the Directory of published versions
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:PaymentNotice ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example-01"] ; # fhir:meta [ ( fhir:profile [ fhir:v "https://nrces.in/ndhm/fhir/r4/StructureDefinition/PaymentNotice"^^xsd:anyURI ; fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/PaymentNotice> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">A human-readable rendering of the PaymentNotice</div>" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "http://benefitsinc.com/paymentnotice"^^xsd:anyURI ] ; fhir:value [ fhir:v "776543" ] ] ) ; # fhir:status [ fhir:v "active"] ; # fhir:request [ fhir:reference [ fhir:v "Claim/example-01" ] ] ; # fhir:response [ fhir:reference [ fhir:v "ClaimResponse/example-01" ] ; fhir:identifier [ fhir:use [ fhir:v "official" ] ] ] ; # fhir:created [ fhir:v "2014-08-16"^^xsd:date] ; # fhir:provider [ fhir:reference [ fhir:v "Organization/example-01" ] ; fhir:identifier [ fhir:use [ fhir:v "official" ] ] ] ; # fhir:payment [ fhir:reference [ fhir:v "PaymentReconciliation/example-01" ] ] ; # fhir:paymentDate [ fhir:v "2014-08-15"^^xsd:date] ; # fhir:payee [ fhir:reference [ fhir:v "Organization/example-01" ] ] ; # fhir:recipient [ fhir:identifier [ fhir:system [ fhir:v "http://regulators.gov"^^xsd:anyURI ] ; fhir:value [ fhir:v "AB123" ] ] ] ; # fhir:amount [ fhir:value [ fhir:v "12500.00"^^xsd:decimal ] ; fhir:currency [ fhir:v "INR" ] ] ; # fhir:paymentStatus [ ( fhir:coding [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/paymentstatus"^^xsd:anyURI ] ; fhir:code [ fhir:v "paid" ] ] ) ] . #