@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://digitalhealth.gov.au/fhir/cc/Organization/organization-suppressed-example> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "organization-suppressed-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: 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/suppressed-cs organisation-initiated}\">Organisation initiated</span></li><li>includeSelf: true</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>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:extension ( [
       fhir:url [ fhir:v "suppressedBy"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           fhir:system [ fhir:v "http://digitalhealth.gov.au/fhir/cc/CodeSystem/suppressed-cs"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "organisation-initiated" ] ;
           fhir:display [ fhir:v "Organisation initiated" ]
         ] )
       ]
     ] [
       fhir:url [ fhir:v "includeSelf"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:boolean ;
         fhir:v true
       ]
     ] ) ;
     fhir:url [ fhir:v "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/suppressed"^^xsd:anyURI ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "prov" ] ;
       fhir:display [ fhir:v "Healthcare Provider" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "Suppressed Org"] ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "+61 2 9999 8888" ]
  ] ) ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "123 Suppressed St" ] ) ;
     fhir:city [ fhir:v "Sydney" ] ;
     fhir:state [ fhir:v "NSW" ] ;
     fhir:postalCode [ fhir:v "2000" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

