AlphaSense · Schema

Document

A single document indexed in the AlphaSense corpus - filing, broker research, news article, earnings call transcript, Tegus expert call, or customer-ingested Enterprise Intelligence document.

Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

Properties

Name Type Description
id string AlphaSense document identifier.
title string Human-readable document title.
releasedAt string Document publication or release timestamp.
sourceType string Source class. 'internal' indicates a customer Enterprise Intelligence upload.
companies array AlphaSense company identifiers tagged on the document.
url string Canonical URL for the document inside AlphaSense.
View JSON Schema on GitHub

JSON Schema

alphasense-document-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-document-schema.json",
  "title": "Document",
  "description": "A single document indexed in the AlphaSense corpus - filing, broker research, news article, earnings call transcript, Tegus expert call, or customer-ingested Enterprise Intelligence document.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "AlphaSense document identifier."
    },
    "title": {
      "type": "string",
      "description": "Human-readable document title."
    },
    "releasedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Document publication or release timestamp."
    },
    "sourceType": {
      "type": "string",
      "enum": ["filing", "broker", "transcript", "tegus", "news", "internal"],
      "description": "Source class. 'internal' indicates a customer Enterprise Intelligence upload."
    },
    "companies": {
      "type": "array",
      "items": { "type": "string" },
      "description": "AlphaSense company identifiers tagged on the document."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Canonical URL for the document inside AlphaSense."
    }
  },
  "required": ["id", "title", "sourceType"]
}