SMART App Launch
2.2.0-ballot - CI-Build International flag

This page is part of the Smart App Launch Implementation Guide (v2.2.0-ballot: STU 2.2 Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. The current version which supersedes this version is 2.1.0. For a full list of available versions, see the Directory of published versions

: Example Brand - 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 -------------------------------------------------------------------

 a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  fhir:extension ( [
    ( fhir:extension [
fhir:url [ fhir:v "brandLogo"^^xsd:anyURI ] ;
fhir:value [ fhir:v "https://example.org/examplelabs/images/logo.svg"^^xsd:anyURI ]     ] ) ;
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/organization-brand"^^xsd:anyURI ]
  ] [
    ( fhir:extension [
fhir:url [ fhir:v "portalName"^^xsd:anyURI ] ;
fhir:value [ fhir:v "Example Brand Portal" ]     ] [
fhir:url [ fhir:v "portalUrl"^^xsd:anyURI ] ;
fhir:value [ fhir:v "https://healthcentral.example.org"^^xsd:anyURI ]     ] [
fhir:url [ fhir:v "portalLogo"^^xsd:anyURI ] ;
fhir:value [ fhir:v "https://healthcentral.example.org/logo.png"^^xsd:anyURI ]     ] [
fhir:url [ fhir:v "portalEndpoint"^^xsd:anyURI ] ;
fhir:value [
a fhir:Reference ;
fhir:reference [ fhir:v "Endpoint/example" ] ;
fhir:display [ fhir:v "FHIR R4 Endpoint for Example Brand" ]       ]     ] ) ;
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/organization-portal"^^xsd:anyURI ]
  ] ) ; # 
  fhir:identifier ( [
fhir:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ;
fhir:value [ fhir:v "https://examplelabs.org" ]
  ] ) ; # 
  fhir:active [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:type ( [
    ( fhir:coding [
fhir:system [ fhir:v "http://hl7.org/fhir/smart-app-launch/CodeSystem/patient-access-category"^^xsd:anyURI ] ;
fhir:code [ fhir:v "clinical" ] ;
fhir:display [ fhir:v "Clinical" ]     ] )
  ] ) ; # 
  fhir:name [ fhir:v "Example Brand"] ; # 
  fhir:alias ( [ fhir:v "ExampleHealth Brand"] ) ; # 
  fhir:telecom ( [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "https://brand.example.com" ]
  ] ) ; # 
  fhir:address ( [
    ( fhir:line [ fhir:v "103 Main St" ] ) ;
fhir:city [ fhir:v "Boston" ] ;
fhir:state [ fhir:v "MA" ] ;
fhir:postalCode [ fhir:v "02111" ]
  ] ) . #