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

: Active Period Example - JSON Representation

Raw json | Download

{
  "resourceType" : "HealthcareService",
  "id" : "active-period-example",
  "text" : {
    "status" : "extensions",
    "div" : "<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>"
  },
  "extension" : [
    {
      "url" : "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/active-period",
      "valuePeriod" : {
        "start" : "2026-01-01",
        "end" : "2026-12-31"
      }
    }
  ],
  "active" : true,
  "providedBy" : {
    "display" : "Example Health Organisation"
  },
  "type" : [
    {
      "coding" : [
        {
          "system" : "http://snomed.info/sct",
          "code" : "394913002",
          "display" : "Psychotherapy (specialty)"
        }
      ]
    }
  ],
  "name" : "Dame Edna's Gladiolus Therapy Centre",
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+61 3 9876 5432",
      "use" : "work"
    }
  ]
}