Polaris FHIR Implementation Guide
1.9.8 - ci-build

Polaris FHIR Implementation Guide - Local Development build (v1.9.8) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

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

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

 a fhir:Appointment ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "polaris-core-appointment-example-with-requestedPeriod"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "https://fhir.apps.health/StructureDefinition/polaris-core-appointment"^^xsd:anyURI ;
fhir:link <https://fhir.apps.health/StructureDefinition/polaris-core-appointment>     ] )
  ] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Scheduled annual physical for Avery Linwood (requested Apr 1), fulfilled on April 8, 2025 at Cedarbrook Family Health Site A.</div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-appointment-identifier"^^xsd:anyURI ] ;
fhir:value [ fhir:v "APPT-AVERY-20250408RP" ]
  ] ) ; # 
  fhir:status [ fhir:v "fulfilled"] ; # 
  fhir:start [ fhir:v "2025-04-08T09:00:00-06:00"^^xsd:dateTime] ; # 
  fhir:end [ fhir:v "2025-04-08T09:45:00-06:00"^^xsd:dateTime] ; # 
  fhir:participant ( [
fhir:actor [
fhir:identifier [
fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-patient-identifier"^^xsd:anyURI ] ;
fhir:value [ fhir:v "1234567890" ]       ] ;
fhir:display [ fhir:v "Avery Linwood" ]     ] ;
fhir:status [ fhir:v "accepted" ]
  ] [
fhir:actor [
fhir:identifier [
fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-practitioner-identifier"^^xsd:anyURI ] ;
fhir:value [ fhir:v "NAVARRO-PRAC-001" ]       ] ;
fhir:display [ fhir:v "Dr. Emil Navarro" ]     ] ;
fhir:status [ fhir:v "accepted" ]
  ] ) ; # 
  fhir:requestedPeriod ( [
fhir:start [ fhir:v "2025-04-01T10:00:00-06:00"^^xsd:dateTime ]
  ] ) . #