Common Components FHIR Implementation Guide, published by Australian Digital Health Agency. This guide is not an authorized publication; it is the continuous build for version 26.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/AuDigitalHealth/common-components/ and changes regularly. See the Directory of published versions

: New Patient Availability Example - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/HealthcareService/new-patient-availability-example> a fhir:HealthcareService ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "new-patient-availability-example"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "extensions" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: HealthcareService new-patient-availability-example</b></p><a name=\"new-patient-availability-example\"> </a><a name=\"hcnew-patient-availability-example\"> </a><p><b>New Patient Availability</b>: <span title=\"Codes:{https://www.healthterminologies.gov.au/integration/R4/fhir/CodeSystem/new-patient-availability-1 accepting}\">accepting new patients</span></p><p><b>active</b>: true</p><p><b>providedBy</b>: Example Health Organisation</p><p><b>type</b>: <span title=\"Codes:{http://snomed.info/sct 394802001}\">General medicine</span></p><p><b>name</b>: Russell Coight's Outback Flying Doctor Service</p><p><b>telecom</b>: <a href=\"tel:+61755551234\">+61 7 5555 1234</a></p></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Extension.url [ fhir:value "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/new-patient-availability" ] ;
     fhir:Extension.valueCodeableConcept [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "https://www.healthterminologies.gov.au/integration/R4/fhir/CodeSystem/new-patient-availability-1" ] ;
         fhir:Coding.code [ fhir:value "accepting" ] ;
         fhir:Coding.display [ fhir:value "accepting new patients" ]
       ]
     ]
  ] ;
  fhir:HealthcareService.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:HealthcareService.providedBy [
     fhir:Reference.display [ fhir:value "Example Health Organisation" ]
  ] ;
  fhir:HealthcareService.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:394802001 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "394802001" ] ;
       fhir:Coding.display [ fhir:value "General medicine" ]
     ]
  ] ;
  fhir:HealthcareService.name [ fhir:value "Russell Coight's Outback Flying Doctor Service"] ;
  fhir:HealthcareService.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "+61 7 5555 1234" ] ;
     fhir:ContactPoint.use [ fhir:value "work" ]
  ] .

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

<http://hl7.org/fhir/HealthcareService/new-patient-availability-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/HealthcareService/new-patient-availability-example.ttl> .