AlphaSense · Schema

WorkflowAgent

A pre-built or customer-defined Workflow Agent exposed by the AlphaSense Agent API. Each agent has an id, input contract, and output contract.

Market IntelligenceFinancial ResearchSearchGenerative AIAI AgentsExpert CallsDocument IntelligenceEnterprise IntelligenceMCPGraphQL

Properties

Name Type Description
id string
name string
description string
inputs object
outputs object
View JSON Schema on GitHub

JSON Schema

alphasense-workflow-agent-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-workflow-agent-schema.json",
  "title": "WorkflowAgent",
  "description": "A pre-built or customer-defined Workflow Agent exposed by the AlphaSense Agent API. Each agent has an id, input contract, and output contract.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "inputs": { "type": "object", "additionalProperties": true },
    "outputs": { "type": "object", "additionalProperties": true }
  },
  "required": ["id", "name"]
}