Claude · Schema

ModelInfo

Metadata about a Claude model.

Artificial IntelligenceChatbotConversational AIGenerative AILarge Language ModelsMachine LearningNatural Language Processing

Properties

Name Type Description
id string Unique model identifier.
type string Object type. Always "model" for model objects.
display_name string A human-readable name for the model.
created_at string RFC 3339 datetime string representing when the model was released.
View JSON Schema on GitHub

JSON Schema

claude-messages-model-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ModelInfo",
  "type": "object",
  "description": "Metadata about a Claude model.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique model identifier."
    },
    "type": {
      "type": "string",
      "description": "Object type. Always \"model\" for model objects."
    },
    "display_name": {
      "type": "string",
      "description": "A human-readable name for the model."
    },
    "created_at": {
      "type": "string",
      "description": "RFC 3339 datetime string representing when the model was released."
    }
  }
}