Claude · Schema

ThinkingBlock

A thinking content block showing Claude's internal reasoning process.

Artificial IntelligenceChatbotsConversational AIGenerative AILarge Language ModelsMachine-LearningNatural Language Processing

Properties

Name Type Description
type string
thinking string Claude's internal reasoning text.
signature string A signature verifying the thinking block.
View JSON Schema on GitHub

JSON Schema

claude-thinkingblock-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ThinkingBlock",
  "title": "ThinkingBlock",
  "type": "object",
  "description": "A thinking content block showing Claude's internal reasoning process.",
  "required": [
    "type",
    "thinking",
    "signature"
  ],
  "properties": {
    "type": {
      "type": "string",
      "const": "thinking",
      "example": "example_value"
    },
    "thinking": {
      "type": "string",
      "description": "Claude's internal reasoning text.",
      "example": "example_value"
    },
    "signature": {
      "type": "string",
      "description": "A signature verifying the thinking block.",
      "example": "example_value"
    }
  }
}