diff --git a/README.md b/README.md index 5a8fed1..e760595 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/schemas/vs00_strings.fbs b/schemas/vs00_strings.fbs new file mode 100644 index 0000000..ce3b2b9 --- /dev/null +++ b/schemas/vs00_strings.fbs @@ -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;