Cloudflare KV · Schema

Api Response Common

Key-Value StoreEdge ComputingCloudflare WorkersDistributed StorageGlobal DatabaseCacheConfiguration Management

Properties

Name Type Description
errors object
messages object
success boolean Whether the API call was successful.
View JSON Schema on GitHub

JSON Schema

workers-kv_api-response-common.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/cloudflare-kv/json-schema/workers-kv_api-response-common.json",
  "title": "Api Response Common",
  "properties": {
    "errors": {
      "$ref": "#/components/schemas/workers-kv_messages"
    },
    "messages": {
      "$ref": "#/components/schemas/workers-kv_messages"
    },
    "success": {
      "description": "Whether the API call was successful.",
      "enum": [
        true
      ],
      "example": true,
      "type": "boolean"
    }
  },
  "required": [
    "success",
    "errors",
    "messages"
  ],
  "type": "object"
}