Cloudflare D1 · Schema

D1 Raw Result Response

Schema for d1_raw-result-response

DatabaseSQLiteServerlessEdge ComputingSQLCloudflareWorkers

Properties

Name Type Description
meta object
results object
success boolean
View JSON Schema on GitHub

JSON Schema

d1_raw-result-response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cloudflare-d1/main/json-schema/d1_raw-result-response.json",
  "title": "D1 Raw Result Response",
  "description": "Schema for d1_raw-result-response",
  "properties": {
    "meta": {
      "$ref": "#/components/schemas/d1_query-meta"
    },
    "results": {
      "properties": {
        "columns": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "rows": {
          "items": {
            "items": {
              "anyOf": [
                {
                  "type": "number"
                },
                {
                  "type": "string"
                },
                {
                  "type": "object"
                }
              ]
            },
            "type": "array"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "success": {
      "type": "boolean"
    }
  },
  "type": "object"
}