seismometer.configuration.model.EventTableMap¶
- pydantic model seismometer.configuration.model.EventTableMap¶
Override mapping of event table columns.
Show Entity Relationship Diagram
Show JSON schema
{ "title": "EventTableMap", "description": "Override mapping of event table columns.", "type": "object", "properties": { "type": { "default": "Type", "title": "Type", "type": "string" }, "time": { "default": "EventTime", "title": "Time", "type": "string" }, "value": { "default": "Value", "title": "Value", "type": "string" } } }
- Fields:
- field time: str = 'EventTime'¶
The column name of the event time.
- field type: str = 'Type'¶
The column name of the event type.
- field value: str = 'Value'¶
The column name of the event value.