seismometer.configuration.model.EventTableMap

pydantic model seismometer.configuration.model.EventTableMap

Override mapping of event table columns.

Show Entity Relationship Diagram
digraph "Entity Relationship Diagram created by erdantic" {
   graph [fontcolor=gray66,
      fontname="Times New Roman,Times,Liberation Serif,serif",
      fontsize=9,
      nodesep=0.5,
      rankdir=LR,
      ranksep=1.5
   ];
   node [fontname="Times New Roman,Times,Liberation Serif,serif",
      fontsize=14,
      label="\N",
      shape=plain
   ];
   edge [dir=both];
   "seismometer.configuration.model.EventTableMap"   [label=<<table border="0" cellborder="1" cellspacing="0"><tr><td port="_root" colspan="2"><b>EventTableMap</b></td></tr><tr><td>type</td><td port="type">str</td></tr><tr><td>time</td><td port="time">str</td></tr><tr><td>value</td><td port="value">str</td></tr></table>>,
      tooltip="seismometer.configuration.model.EventTableMap&#xA;&#xA;Override mapping of event table columns.&#xA;"];
}

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.