explain_event
Describe each field in a FLOX event struct—its name, type, units, and meaning. Accepts a type name or a raw event dict for introspection.
Instructions
Describe the fields of a FLOX event struct. Accepts a type name ('FloxTradeData', 'FloxBookData', 'FloxBarData', 'FloxSymbolContext', 'FloxSignal') OR a raw event dict; returns each field's name, type, units, and human description. Use when the user asks 'what's in this event'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type_name | No | Event struct name. One of: FloxTradeData, FloxBookData, FloxBarData, FloxSymbolContext, FloxSignal. | |
| event | No | Optional event dict to introspect. If type_name is omitted, the dict's shape is matched against known struct shapes. |