Google Gemini · Schema

CitationMetadata

A collection of source attributions for a piece of content.

Agentic AIArtificial IntelligenceCode GenerationEmbeddingsGenerative AIImage GenerationLLMMachine LearningMultimodal

Properties

Name Type Description
citationSources array Citations to sources for a specific response.
View JSON Schema on GitHub

JSON Schema

google-gemini-citationmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CitationMetadata",
  "title": "CitationMetadata",
  "type": "object",
  "description": "A collection of source attributions for a piece of content.",
  "properties": {
    "citationSources": {
      "type": "array",
      "description": "Citations to sources for a specific response.",
      "items": {
        "$ref": "#/components/schemas/CitationSource"
      }
    }
  }
}