@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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://digitalhealth.gov.au/fhir/cc/HealthcareService/active-period-example> a fhir:HealthcareService ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "active-period-example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: HealthcareService active-period-example</b></p><a name=\"active-period-example\"> </a><a name=\"hcactive-period-example\"> </a><p><b>Active Period</b>: 2026-01-01 --&gt; 2026-12-31</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 394913002}\">Psychotherapy (specialty)</span></p><p><b>name</b>: Dame Edna's Gladiolus Therapy Centre</p><p><b>telecom</b>: <a href=\"tel:+61398765432\">+61 3 9876 5432</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/active-period"^^xsd:anyURI ] ;
     fhir:value [
       a fhir:Period ;
       fhir:start [ fhir:v "2026-01-01"^^xsd:date ] ;
       fhir:end [ fhir:v "2026-12-31"^^xsd:date ]
     ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:providedBy [
     fhir:display [ fhir:v "Example Health Organisation" ]
  ] ; # 
  fhir:type ( [
     fhir:coding ( [
       a sct:394913002 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "394913002" ] ;
       fhir:display [ fhir:v "Psychotherapy (specialty)" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "Dame Edna's Gladiolus Therapy Centre"] ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+61 3 9876 5432" ] ;
     fhir:use [ fhir:v "work" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

