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 Endpoint - 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:Endpoint ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/endpoint-fhir-version"^^xsd:anyURI ] ;
fhir:value [ fhir:v "4.0.1" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:connectionType [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/endpoint-connection-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "hl7-fhir-rest" ]
  ] ; # 
  fhir:name [ fhir:v "FHIR R4 Endpoint for Example Medical Center"] ; # 
  fhir:contact ( [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "https://dev-portal.example.org" ]
  ] ) ; # 
  fhir:payloadType ( [
    ( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/endpoint-payload-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "none" ]     ] )
  ] ) ; # 
  fhir:address [ fhir:v "https://example.org/r4"^^xsd:anyURI] . #