Cloudflare D1 · Schema

D1 Single Query

A single query with or without parameters

DatabaseSQLiteServerlessEdge ComputingSQLCloudflareWorkers

Properties

Name Type Description
params object
sql object
View JSON Schema on GitHub

JSON Schema

d1_single-query.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/cloudflare-d1/main/json-schema/d1_single-query.json",
  "title": "D1 Single Query",
  "description": "A single query with or without parameters",
  "properties": {
    "params": {
      "$ref": "#/components/schemas/d1_params"
    },
    "sql": {
      "$ref": "#/components/schemas/d1_sql"
    }
  },
  "required": [
    "sql"
  ],
  "type": "object"
}