AlphaSense · Schema

Citation

An inline citation attached to a GenSearch or Deep Research answer, pointing back to the AlphaSense source document.

Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

Properties

Name Type Description
documentId string
title string
sourceType string
url string
snippet string
View JSON Schema on GitHub

JSON Schema

alphasense-citation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-schema/alphasense-citation-schema.json",
  "title": "Citation",
  "description": "An inline citation attached to a GenSearch or Deep Research answer, pointing back to the AlphaSense source document.",
  "type": "object",
  "properties": {
    "documentId": { "type": "string" },
    "title": { "type": "string" },
    "sourceType": {
      "type": "string",
      "enum": ["filing", "broker", "transcript", "tegus", "news", "internal"]
    },
    "url": { "type": "string", "format": "uri" },
    "snippet": { "type": "string" }
  },
  "required": ["documentId", "sourceType"]
}