@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Claim; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-01"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "https://nrces.in/ndhm/fhir/r4/StructureDefinition/Claim"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Generated Narrative: Claim

Resource Claim \"example-01\"

Profile: Claim

identifier: id: 7612345

status: active

type: Pharmacy (Claim Type Codes#pharmacy)

use: claim

patient: Patient/example-01 \"\"

created: 2014-08-16

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

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

priority: Immediate (Process Priority Codes#stat)

Payees

-Type
*Provider (Claim Payee Type Codes#provider)

CareTeams

-SequenceProvider
*1Practitioner/example-01 \"\"

Diagnoses

-SequenceDiagnosis[x]Type
*1654456 ([not stated]#654456)Oral (Claim Type Codes#oral)

Insurances

-SequenceFocalCoveragePreAuthRef
*1trueCoverage/example-0112345

item

sequence: 1

careTeamSequence: 1

productOrService: Smoking cessation (Example Pharmacy Service Codes#smokecess)

serviced: 2014-08-16

UnitPrices

-ValueCurrency
*60.00INR

Nets

-ValueCurrency
*60.00INR
" ]; fhir:Claim.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "http://happypharma.com/claim" ]; fhir:Identifier.value [ fhir:value "7612345" ] ]; fhir:Claim.status [ fhir:value "active"]; fhir:Claim.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/claim-type" ]; fhir:Coding.code [ fhir:value "pharmacy" ] ] ]; fhir:Claim.use [ fhir:value "claim"]; fhir:Claim.patient [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example-01" ] ]; fhir:Claim.created [ fhir:value "2014-08-16"^^xsd:date]; fhir:Claim.insurer [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/example-01" ] ]; fhir:Claim.provider [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/example-01" ] ]; fhir:Claim.priority [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/processpriority" ]; fhir:Coding.code [ fhir:value "stat" ] ] ]; fhir:Claim.payee [ fhir:Claim.payee.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/payeetype" ]; fhir:Coding.code [ fhir:value "provider" ] ] ] ]; fhir:Claim.careTeam [ fhir:index 0; fhir:Claim.careTeam.sequence [ fhir:value "1"^^xsd:positiveInteger ]; fhir:Claim.careTeam.provider [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example-01" ] ] ]; fhir:Claim.diagnosis [ fhir:index 0; fhir:Claim.diagnosis.sequence [ fhir:value "1"^^xsd:positiveInteger ]; fhir:Claim.diagnosis.diagnosisCodeableConcept [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.code [ fhir:value "654456" ] ] ]; fhir:Claim.diagnosis.type [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/claim-type" ]; fhir:Coding.code [ fhir:value "oral" ] ] ] ]; fhir:Claim.insurance [ fhir:index 0; fhir:Claim.insurance.sequence [ fhir:value "1"^^xsd:positiveInteger ]; fhir:Claim.insurance.focal [ fhir:value "true"^^xsd:boolean ]; fhir:Claim.insurance.coverage [ fhir:link ; fhir:Reference.reference [ fhir:value "Coverage/example-01" ] ]; fhir:Claim.insurance.preAuthRef [ fhir:value "12345"; fhir:index 0 ] ]; fhir:Claim.item [ fhir:index 0; fhir:Claim.item.sequence [ fhir:value "1"^^xsd:positiveInteger ]; fhir:Claim.item.careTeamSequence [ fhir:value "1"^^xsd:positiveInteger; fhir:index 0 ]; fhir:Claim.item.productOrService [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://hl7.org/fhir/ex-pharmaservice" ]; fhir:Coding.code [ fhir:value "smokecess" ] ] ]; fhir:Claim.item.servicedDate [ fhir:value "2014-08-16"^^xsd:date ]; fhir:Claim.item.unitPrice [ fhir:Money.value [ fhir:value "60.00"^^xsd:decimal ]; fhir:Money.currency [ fhir:value "INR" ] ]; fhir:Claim.item.net [ fhir:Money.value [ fhir:value "60.00"^^xsd:decimal ]; fhir:Money.currency [ fhir:value "INR" ] ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------