Apache Doris · Example Payload

Apache Doris Table Schema Example

AnalyticsApacheDatabaseLakehouseMPPOLAPOpen SourceReal-TimeSQL

Apache Doris Table Schema Example is an example object payload from Apache Doris, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

tableNamedatabaseNametableTypekeyTypecolumnscommentreplicationNum

Example Payload

apache-doris-table-schema-example.json Raw ↑
{
  "tableName": "sales_events",
  "databaseName": "analytics",
  "tableType": "OLAP",
  "keyType": "DUP_KEYS",
  "columns": [
    {
      "name": "event_time",
      "type": "DATETIME",
      "isKey": false,
      "nullable": true,
      "comment": "Timestamp of the event"
    }
  ],
  "comment": "Sales event records table",
  "replicationNum": 3
}