Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ and work with the flat buffers union data type in your root element.
| fc00 | `fc00_forwarder_config.fbs ` | Configuration update for Forwarder |
| al00 | `al00_alarm.fbs ` | Generic alarm schema for EPICS, NICOS, etc. |
| da00 | `da00_dataarray.fbs ` | Pseudo-scipp DataArray with time-dependent and constant Variables |
| vs00 | `vs00_strings.fbs ` | Timed variable string events |


## Useful information:

Expand Down
11 changes: 11 additions & 0 deletions schemas/vs00_strings.fbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
file_identifier "vs00";

// A simple schema to carry a timed string payload.

table StringEvent {
timestamp: long; //nanoseconds since Unix epoch (1 Jan 1970)
source_name: string; //source of data for filtering
data: string;
}

root_type StringEvent;