RisingWave · Example Payload

Risingwave Ingest Event Example

StreamingSQLDatabaseReal-TimeKafkaMaterialized ViewsPostgreSQLApache Iceberg

Risingwave Ingest Event Example is an example object payload from RisingWave, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

_descriptionrequestresponse

Example Payload

risingwave-ingest-event-example.json Raw ↑
{
  "_description": "Example POST /v1/events?name=clickstream — ingest a page-view event into the clickstream table.",
  "request": {
    "method": "POST",
    "url": "/v1/events?name=clickstream",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "user_id": "u-42",
      "session_id": "s-9871",
      "event_type": "page_view",
      "url": "/docs/get-started",
      "referrer": "https://google.com",
      "ts": 1717200000000
    }
  },
  "response": {
    "status": 201
  }
}