AlphaSense · JSON Structure

Alphasense Document Structure

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: 6 Required: 3
Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

Document is a JSON Structure definition published by AlphaSense, describing 6 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id title releasedAt sourceType companies url

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/alphasense/refs/heads/main/json-structure/alphasense-document-structure.json",
  "name": "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" },
    "releasedAt": { "type": "datetime" },
    "sourceType": {
      "type": "string",
      "enum": ["filing", "broker", "transcript", "tegus", "news", "internal"]
    },
    "companies": {
      "type": "array",
      "items": { "type": "string" }
    },
    "url": { "type": "uri" }
  },
  "required": ["id", "title", "sourceType"]
}