Claude · Schema

ThinkingBlockParam

A thinking content block in a request (for multi-turn with extended thinking).

Artificial IntelligenceChatbotConversational AIGenerative AILarge Language ModelsMachine LearningNatural Language Processing

Properties

Name Type Description
type string
thinking string The thinking text from a previous response.
signature string The signature from the previous thinking block.
View JSON Schema on GitHub

JSON Schema

claude-messages-thinking-block-param-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ThinkingBlockParam",
  "type": "object",
  "description": "A thinking content block in a request (for multi-turn with extended thinking).",
  "properties": {
    "type": {
      "type": "string"
    },
    "thinking": {
      "type": "string",
      "description": "The thinking text from a previous response."
    },
    "signature": {
      "type": "string",
      "description": "The signature from the previous thinking block."
    }
  }
}