Claude · Schema

TextBlockParam

A text content block in a request.

Artificial IntelligenceChatbotConversational AIGenerative AILarge Language ModelsMachine LearningNatural Language Processing

Properties

Name Type Description
type string
text string The text content.
View JSON Schema on GitHub

JSON Schema

claude-messages-text-block-param-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TextBlockParam",
  "type": "object",
  "description": "A text content block in a request.",
  "properties": {
    "type": {
      "type": "string"
    },
    "text": {
      "type": "string",
      "description": "The text content."
    }
  }
}