{ "$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"] }