Data Structures
This page documents the data structures in FAR.
Alarm System
alarmSystem.id
alarmSystem.name
alarmSystem.status
alarmSystem.lastStatusChange
alarmSystem.passcode
alarmSystem.location
alarmSystem.monitoring
alarmSystem.postalCode
alarmSystem.position.x
alarmSystem.position.y
alarmSystem.position.z
- id
- name
- status
- lastStatusChange
- passcode
- location
- monitoring
- postalCode
- position
int
ID of the Alarm System.
Example: 1
string
Name of the Alarm System.
Example: Mission Row Police Station
enum
Status of the Alarm System as an enum.
Values:
0
- Invalid status1
- Entire system disabled2
- System ready / standby3
- Announcement in progress4
- WalkTest in progress5
- System has isolations6
- System in Alarm7
- System silenced8
- System test in progress
Example: 2
date
The last time the Alarm System's status was changed.
Example: 2024-12-23T04:14:33.7711836Z
string
Passcode for Control Panels in this Alarm System.
Example: 1234
string
Human readable location of this Alarm System.
Example: Altee St, Mission Row
bool
A boolean indicating if Monitoring for this Alarm System is active or inactive.
Example: true
string
| null
Postal Code this Alarm System is located within.
Example: 123
table
World coordinates of the center of this Alarm System.
Example:
local position = vector3(alarmSystem.position.x, alarmSystem.position.y, alarmSystem.position.z)
Alarm System Components
alarmSystemComponents.id
alarmSystemComponents.controlPanels
alarmSystemComponents.pullStations
alarmSystemComponents.detectors
alarmSystemComponents.sprinklers
- id
- controlPanels
- pullStations
- detectors
- sounders
- sprinklers
int
ID of the Alarm System.
Example: 1
Table containing data for all the Control Panels in this Alarm System.
Table containing data for all the Pull Stations in this Alarm System.
Table containing data for all the Detectors in this Alarm System.
Table containing data for all the Sounders in this Alarm System.
Table containing data for all the Sprinklers in this Alarm System.
Pull Station
pullStation.id
pullStation.name
pullStation.position.x
pullStation.position.y
pullStation.position.z
pullStation.rotation.x
pullStation.rotation.y
pullStation.rotation.z
pullStation.isVirtual
pullStation.modelName
- id
- name
- position
- rotation
- isVirtual
- modelName
int
ID of the Pull Station.
Example: 1
int
Name of the Pull Station.
Example: Near Front Doors
table
World coordinates of the Pull Station in a table.
Example:
local position = vector3(pullStation.position.x, pullStation.position.y, pullStation.position.z)
table
Rotation of the Pull Station in a table.
Example:
local rotation = vector3(pullStation.rotation.x, pullStation.rotation.y, pullStation.rotation.z)
string
Name of the model this Pull Station uses.
Example: ic_prop_pull_station
Control Panel
controlPanel.id
controlPanel.name
controlPanel.position.x
controlPanel.position.y
controlPanel.position.z
controlPanel.rotation.x
controlPanel.rotation.y
controlPanel.rotation.z
controlPanel.isVirtual
controlPanel.modelName
- id
- name
- position
- rotation
- isVirtual
- modelName
int
ID of the Control Panel.
Example: 1
string
Name of the Control Panel.
Example: Entry Hallway
table
World coordinates of the Control Panel in a table.
Example:
local position = vector3(controlPanel.position.x, controlPanel.position.y, controlPanel.position.z)
table
Rotation of the Control Panel in a table.
Example:
local rotation = vector3(controlPanel.rotation.x, controlPanel.rotation.y, controlPanel.rotation.z)
string
Name of the model this Control Panel uses.
Example: ic_prop_fire_panel
Sounder
sounder.id
sounder.position.x
sounder.position.y
sounder.position.z
sounder.rotation.x
sounder.rotation.y
sounder.rotation.z
sounder.isVirtual
- id
- position
- rotation
- isVirtual
int
ID of the Sounder.
Example: 1
table
World coordinates of the Sounder in a table.
Example:
local position = vector3(sounder.position.x, sounder.position.y, sounder.position.z)
table
Rotation of the Sounder in a table.
Example:
local rotation = vector3(sounder.rotation.x, sounder.rotation.y, sounder.rotation.z)
Sprinkler
sprinkler.id
sprinkler.position.x
sprinkler.position.y
sprinkler.position.z
sprinkler.rotation.x
sprinkler.rotation.y
sprinkler.rotation.z
sprinkler.isVirtual
- id
- position
- rotation
- isVirtual
int
ID of the Sprinkler.
Example: 1
table
World coordinates of the Sprinkler in a table.
Example:
local position = vector3(sprinkler.position.x, sprinkler.position.y, sprinkler.position.z)
table
Rotation of the Sprinkler in a table.
Example:
local rotation = vector3(sprinkler.rotation.x, sprinkler.rotation.y, sprinkler.rotation.z)
Detector
detector.id
detector.position.x
detector.position.y
detector.position.z
detector.rotation.x
detector.rotation.y
detector.rotation.z
detector.isVirtual
- id
- position
- rotation
- isVirtual
int
ID of the Detector.
Example: 1
table
World coordinates of the Detector in a table.
Example:
local position = vector3(detector.position.x, detector.position.y, detector.position.z)
table
Rotation of the Detector in a table.
Example:
local rotation = vector3(detector.rotation.x, detector.rotation.y, detector.rotation.z)