SMART Health Cards: Vaccination & Testing Implementation Guide
1.0.0 - STU1 Release International flag

SMART Health Cards: Vaccination & Testing Implementation Guide, published by HL7 International / Public Health. This guide is not an authorized publication; it is the continuous build for version 1.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-shc-vaccination-ig/ and changes regularly. See the Directory of published versions

: example-bundle-lab-test-results-covid-2 - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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:Bundle ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:type [ fhir:v "collection"] ; # 
  fhir:entry ( [
fhir:fullUrl [ fhir:v "resource:0"^^xsd:anyURI ] ;
    ( fhir:resource <resource:0> )
  ] [
fhir:fullUrl [ fhir:v "resource:1"^^xsd:anyURI ] ;
    ( fhir:resource <resource:1> )
  ] ) . # 

<resource:0> a fhir:Patient ;
  fhir:name ( [
fhir:family [ fhir:v "Anyperson" ] ;
    ( fhir:given [ fhir:v "James" ] [ fhir:v "T." ] )
  ] ) ; # 
  fhir:birthDate [ fhir:v "1951-01-20"^^xsd:date] . # 

<resource:1> a fhir:Observation ;
  fhir:meta [
    ( fhir:security [
fhir:system [ fhir:v "https://smarthealth.cards/ial"^^xsd:anyURI ] ;
fhir:code [ fhir:v "IAL2" ]     ] )
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
    ( fhir:coding [
a loinc:94558-4 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "94558-4" ]     ] )
  ] ; # 
  fhir:subject [
fhir:reference [ fhir:v "resource:0" ]
  ] ; # 
  fhir:effective [ fhir:v "2021-02-17"^^xsd:date] ; # 
  fhir:performer ( [
fhir:display [ fhir:v "ABC General Hospital" ]
  ] ) ; # 
  fhir:value [
a fhir:CodeableConcept ;
    ( fhir:coding [
a sct:260373001 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "260373001" ]     ] )
  ] . #