HL7® FHIR® New Zealand Base Implementation Guide
3.1.0 - Draft

HL7® FHIR® New Zealand Base Implementation Guide, published by HL7 New Zealand. This guide is not an authorized publication; it is the continuous build for version 3.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7NZ/nzbase/ and changes regularly. See the Directory of published versions

: CoverageCSC - TTL Representation

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 -------------------------------------------------------------------

<http://hl7.org/fhir/Coverage/CoverageCSC> 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:link <http://hl7.org/fhir/Patient/patient-dhb> ;
     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:link <http://hl7.org/fhir/Organization/organization-moh> ;
     fhir:Reference.reference [ fhir:value "Organization/organization-moh" ]
  ] .

<http://hl7.org/fhir/Patient/patient-dhb> a fhir:Patient .

<http://hl7.org/fhir/Organization/organization-moh> a fhir:Organization .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Coverage/CoverageCSC.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Coverage/CoverageCSC.ttl> .