Snowflake · Schema

ResultSet

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
code string
sqlState string
message string
statementHandle string
createdOn integer Timestamp that specifies when the statement execution started.‌ The timestamp is expressed in milliseconds since the epoch.‌
statementStatusUrl string
resultSetMetaData object
data array Result set data.
stats object these stats might not be available for each request.
View JSON Schema on GitHub

JSON Schema

sqlapi-result-set-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ResultSet",
  "type": "object",
  "properties": {
    "code": {
      "type": "string"
    },
    "sqlState": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "statementHandle": {
      "type": "string"
    },
    "createdOn": {
      "type": "integer",
      "description": "Timestamp that specifies when the statement execution started.\u200c The timestamp is expressed in milliseconds since the epoch.\u200c"
    },
    "statementStatusUrl": {
      "type": "string"
    },
    "resultSetMetaData": {
      "type": "object"
    },
    "data": {
      "type": "array",
      "description": "Result set data."
    },
    "stats": {
      "type": "object",
      "description": "these stats might not be available for each request."
    }
  }
}