Letta · Schema

Annotation

A URL citation when using web search.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
type string
url_citation object
View JSON Schema on GitHub

JSON Schema

letta-annotation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Annotation",
  "title": "Annotation",
  "properties": {
    "type": {
      "type": "string",
      "const": "url_citation",
      "title": "Type"
    },
    "url_citation": {
      "$ref": "#/components/schemas/AnnotationURLCitation"
    }
  },
  "additionalProperties": true,
  "type": "object",
  "required": [
    "type",
    "url_citation"
  ],
  "description": "A URL citation when using web search."
}