Agency 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/CC/ and changes regularly. See the Directory of published versions

: Alternate Name Example - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

 a fhir:PractitionerRole ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "alternate-name-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: PractitionerRole alternate-name-example</b></p><a name=\"alternate-name-example\"> </a><a name=\"hcalternate-name-example\"> </a><p><b>Alternate Name</b>: Alex Smith </p><p><b>active</b>: true</p><p><b>practitioner</b>: Dr Kylie Boomerang</p><p><b>organization</b>: Example Health Organisation</p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 309343006}\">Physician</span></p><p><b>specialty</b>: <span title=\"Codes:{http://snomed.info/sct 408443003}\">General medical practice</span></p><p><b>telecom</b>: <a href=\"mailto:alex.smith@example.com\">alex.smith@example.com</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
fhir:url [ fhir:v "http://digitalhealth.gov.au/fhir/cc/StructureDefinition/alternate-name"^^xsd:anyURI ] ;
fhir:value [
a fhir:HumanName ;
fhir:use [ fhir:v "usual" ] ;
fhir:family [ fhir:v "Smith" ] ;
      ( fhir:given [ fhir:v "Alex" ] ) ;
      ( fhir:prefix [ fhir:v "Dr" ] )     ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:practitioner [
fhir:display [ fhir:v "Dr Kylie Boomerang" ]
  ] ; # 
  fhir:organization [
fhir:display [ fhir:v "Example Health Organisation" ]
  ] ; # 
  fhir:code ( [
    ( fhir:coding [
a sct:309343006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "309343006" ] ;
fhir:display [ fhir:v "Physician" ]     ] )
  ] ) ; # 
  fhir:specialty ( [
    ( fhir:coding [
a sct:408443003 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "408443003" ] ;
fhir:display [ fhir:v "General medical practice" ]     ] )
  ] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "alex.smith@example.com" ] ;
fhir:use [ fhir:v "work" ]
  ] ) . #