QuickNode · Schema

QuickNode Key-Value Record

Schema describing a QuickNode Key-Value Store record.

Web3BlockchainRPCStreamsIPFSMulti-chain

Properties

Name Type Description
database string Name of the key-value database.
key string
value stringnumberbooleanobjectarraynull
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

quicknode-kv-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/quicknode/refs/heads/main/json-schema/quicknode-kv-schema.json",
  "title": "QuickNode Key-Value Record",
  "description": "Schema describing a QuickNode Key-Value Store record.",
  "type": "object",
  "required": ["database", "key"],
  "properties": {
    "database": {
      "type": "string",
      "description": "Name of the key-value database."
    },
    "key": {
      "type": "string"
    },
    "value": {
      "type": ["string", "number", "boolean", "object", "array", "null"]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}