@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Claim ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "ClaimExample"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: Claim ClaimExample

status: Active

type: Professional

use: Claim

patient: Eliud Kipchoge Kiptun Male, DoB: 1984-11-05 ( Unique Patient Identifier: 123456 (use: official, ))

created: 2020-06-15

provider: Practitioner John Doe

priority: Normal

Insurances

-SequenceFocalIdentifierCoverage
*1truehttp://example.org/identifiers/123456CoverageExample
" ] ; # fhir:status [ fhir:v "active"] ; # fhir:type [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/claim-type"^^xsd:anyURI ] ; fhir:code [ fhir:v "professional" ] ; fhir:display [ fhir:v "Professional" ] ] ) ; fhir:text [ fhir:v "Professional" ] ] ; # fhir:use [ fhir:v "claim"] ; # fhir:patient [ fhir:link ; fhir:reference [ fhir:v "Patient/SHAPatientExample" ] ] ; # fhir:created [ fhir:v "2020-06-15"^^xsd:date] ; # fhir:provider [ fhir:link ; fhir:reference [ fhir:v "Practitioner/PractitionerExample" ] ] ; # fhir:priority [ fhir:coding ( [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/processpriority"^^xsd:anyURI ] ; fhir:code [ fhir:v "normal" ] ; fhir:display [ fhir:v "Normal" ] ] ) ; fhir:text [ fhir:v "Normal" ] ] ; # fhir:insurance ( [ fhir:sequence [ fhir:v "1"^^xsd:positiveInteger ] ; fhir:focal [ fhir:v "true"^^xsd:boolean ] ; fhir:identifier [ fhir:system [ fhir:v "http://example.org/identifiers"^^xsd:anyURI ] ; fhir:value [ fhir:v "123456" ] ] ; fhir:coverage [ fhir:reference [ fhir:v "CoverageExample" ] ] ] ) . # # -------------------------------------------------------------------------------------