RisingWave · Schema

QueryResponse

Response object returned by the RisingWave Events API /sql endpoint after executing a SQL query.

StreamingSQLDatabaseReal-TimeKafkaMaterialized ViewsPostgreSQLApache Iceberg

Properties

Name Type Description
columns array Ordered list of columns in the result set.
rows array Result rows. Each item is an object whose keys are column names.
rowsAffected integer Number of rows returned or affected by the query.
error string Error message when the query failed; property is absent on success.
View JSON Schema on GitHub

JSON Schema

risingwave-query-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/risingwave/main/json-schema/risingwave-query-response-schema.json",
  "title": "QueryResponse",
  "description": "Response object returned by the RisingWave Events API /sql endpoint after executing a SQL query.",
  "type": "object",
  "required": ["columns", "rows", "rowsAffected"],
  "properties": {
    "columns": {
      "type": "array",
      "description": "Ordered list of columns in the result set.",
      "items": {
        "$ref": "#/$defs/Column"
      }
    },
    "rows": {
      "type": "array",
      "description": "Result rows. Each item is an object whose keys are column names.",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    },
    "rowsAffected": {
      "type": "integer",
      "description": "Number of rows returned or affected by the query.",
      "minimum": 0
    },
    "error": {
      "type": "string",
      "description": "Error message when the query failed; property is absent on success."
    }
  },
  "$defs": {
    "Column": {
      "title": "Column",
      "description": "Metadata for a single column in a RisingWave query result.",
      "type": "object",
      "required": ["name", "type", "isPrimaryKey", "isHidden"],
      "properties": {
        "name": {
          "type": "string",
          "description": "Column name as defined in the schema."
        },
        "type": {
          "type": "string",
          "description": "SQL data type of the column (e.g. VARCHAR, BIGINT, BOOLEAN, TIMESTAMP)."
        },
        "isPrimaryKey": {
          "type": "boolean",
          "description": "True when this column is part of the primary key."
        },
        "isHidden": {
          "type": "boolean",
          "description": "True when this column is a system/hidden column not returned in SELECT *."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/risingwave-query-response"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.