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

: Suppressed Organization 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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Organization/organization-suppressed-example> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "organization-suppressed-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: Organization organization-suppressed-example</b></p><a name=\"organization-suppressed-example\"> </a><a name=\"hcorganization-suppressed-example\"> </a><blockquote><p><b>Suppression Indicator for Visibility</b></p><ul><li>suppressedBy: <span title=\"Codes:{http://digitalhealth.gov.au/fhir/cc/CodeSystem/responsible-party-type organisation-initiated}\">Organisation initiated</span></li></ul></blockquote><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span></p><p><b>name</b>: Suppressed Org</p><p><b>telecom</b>: <a href=\"tel:+61299998888\">+61 2 9999 8888</a></p><p><b>address</b>: 123 Suppressed St Sydney NSW 2000 </p></div>"
  ] ;
  fhir:DomainResource.extension [
     fhir:index 0 ;
     fhir:Element.extension [
       fhir:index 0 ;
       fhir:Extension.url [ fhir:value "suppressedBy" ] ;
       fhir:Extension.valueCodeableConcept [
         fhir:CodeableConcept.coding [
           fhir:index 0 ;
           fhir:Coding.system [ fhir:value "http://digitalhealth.gov.au/fhir/cc/CodeSystem/responsible-party-type" ] ;
           fhir:Coding.code [ fhir:value "organisation-initiated" ] ;
           fhir:Coding.display [ fhir:value "Organisation initiated" ]
         ]
       ]
     ] ;
     fhir:Extension.url [ fhir:value "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/suppressed" ]
  ] ;
  fhir:Organization.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Organization.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/organization-type" ] ;
       fhir:Coding.code [ fhir:value "prov" ] ;
       fhir:Coding.display [ fhir:value "Healthcare Provider" ]
     ]
  ] ;
  fhir:Organization.name [ fhir:value "Suppressed Org"] ;
  fhir:Organization.telecom [
     fhir:index 0 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "+61 2 9999 8888" ]
  ] ;
  fhir:Organization.address [
     fhir:index 0 ;
     fhir:Address.line [
       fhir:value "123 Suppressed St" ;
       fhir:index 0
     ] ;
     fhir:Address.city [ fhir:value "Sydney" ] ;
     fhir:Address.state [ fhir:value "NSW" ] ;
     fhir:Address.postalCode [ fhir:value "2000" ]
  ] .

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

<http://hl7.org/fhir/Organization/organization-suppressed-example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Organization/organization-suppressed-example.ttl> .