Real Time Location Services Implementation Guide
1.0.0-ballot2 - STU 1 - Ballot 2 International flag

Real Time Location Services Implementation Guide, published by HL7 International / Patient Administration. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot2 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/rtls-ig/ and changes regularly. See the Directory of published versions

: Staff Duress Parameters Input 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:Parameters ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "StaffDuressInputExample-Parameters"] ; # 
  fhir:parameter ( [
fhir:name [ fhir:v "event" ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "http://hl7.org/fhir/uv/rtls/CodeSystem/rtlsMessageEvents"^^xsd:anyURI ] ;
fhir:code [ fhir:v "staff-duress" ] ;
fhir:display [ fhir:v "Staff Duress" ]     ]
  ] [
fhir:name [ fhir:v "location" ] ;
    ( fhir:Parameters.parameter.resource [
a fhir:Location ;
fhir:id [ fhir:v "rtlsLocationExample" ] ;
      ( fhir:identifier [
fhir:value [ fhir:v "EMC-317" ]       ] )     ] )
  ] [
fhir:name [ fhir:v "device" ] ;
    ( fhir:Parameters.parameter.resource [
a fhir:Device ;
fhir:id [ fhir:v "StaffDuressExample-Device" ] ;
      ( fhir:identifier [
fhir:system [ fhir:v "http://example.org/ExampleMedicalCenter/rtlsTagIDs"^^xsd:anyURI ] ;
fhir:value [ fhir:v "12345678" ]       ] )     ] )
  ] [
fhir:name [ fhir:v "timestamp" ] ;
fhir:value [
a fhir:instant ;
fhir:v "2025-05-24T14:30:00Z"^^xsd:dateTime     ]
  ] ) . #