HL7® FHIR® New Zealand Base Implementation Guide 2.0.0 - Release
HL7® FHIR® New Zealand Base Implementation Guide, published by HL7 New Zealand
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:Coverage; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "CoverageCSC"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://hl7.org.nz/fhir/StructureDefinition/NzCoverage"; fhir:index 0; fhir:link <http://hl7.org.nz/fhir/StructureDefinition/NzCoverage> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "additional" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Community Services Card for Raewyn Joseph<br/>NHI ZZZ0032<br/>CSC number 12345689<br/></div>" ]; fhir:Coverage.identifier [ fhir:index 0; fhir:Identifier.use [ fhir:value "official" ]; fhir:Identifier.system [ fhir:value "https://standards.digital.health.nz/ns/csc-id" ]; fhir:Identifier.value [ fhir:value "123456789" ] ]; fhir:Coverage.status [ fhir:value "active"]; fhir:Coverage.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "https://standards.digital.health.nz/ns/coverage-type-code" ]; fhir:Coding.code [ fhir:value "csc" ]; fhir:Coding.display [ fhir:value "Community Services Card" ] ] ]; fhir:Coverage.beneficiary [ fhir:Reference.reference [ fhir:value "Patient/patient-dhb" ] ]; fhir:Coverage.relationship [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/subscriber-relationship" ]; fhir:Coding.code [ fhir:value "self" ] ] ]; fhir:Coverage.period [ fhir:Period.start [ fhir:value "2022-04-01"^^xsd:date ]; fhir:Period.end [ fhir:value "2023-04-01"^^xsd:date ] ]; fhir:Coverage.payor [ fhir:index 0; fhir:Reference.reference [ fhir:value "Organization/organization-moh" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.