Dapr · Schema

Dapr StateItem

Represents a state key/value pair used in Dapr state management operations, including optional concurrency control via ETags and metadata.

Distributed SystemsMicroservicesPlatformPub-SubState ManagementWorkflows

Properties

Name Type Description
key string The state key identifier.
value object The state value. Can be any JSON-serializable value.
etag string ETag for optimistic concurrency control.
metadata object Additional key/value metadata for the state operation.
options object Options for concurrency and consistency behavior.
View JSON Schema on GitHub

JSON Schema

state-item.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/dapr/blob/main/json-schema/state-item.json",
  "title": "Dapr StateItem",
  "description": "Represents a state key/value pair used in Dapr state management operations, including optional concurrency control via ETags and metadata.",
  "type": "object",
  "required": [
    "key",
    "value"
  ],
  "properties": {
    "key": {
      "type": "string",
      "description": "The state key identifier."
    },
    "value": {
      "description": "The state value. Can be any JSON-serializable value."
    },
    "etag": {
      "type": "string",
      "description": "ETag for optimistic concurrency control."
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Additional key/value metadata for the state operation."
    },
    "options": {
      "type": "object",
      "description": "Options for concurrency and consistency behavior.",
      "properties": {
        "concurrency": {
          "type": "string",
          "enum": [
            "first-write",
            "last-write"
          ],
          "description": "Concurrency mode for the state operation."
        },
        "consistency": {
          "type": "string",
          "enum": [
            "eventual",
            "strong"
          ],
          "description": "Consistency level for the state operation."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/state-item"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.