ACI.dev · Schema

FunctionExecute

Agent InfrastructureAgentsAIArtificial IntelligenceFunction CallingMCPModel Context ProtocolOAuthOpen SourceTool CallingVibeOps

Properties

Name Type Description
function_input object The input parameters for the function.
linked_account_owner_id string The owner id of the linked account. This is the id of the linked account owner in the linked account provider.
View JSON Schema on GitHub

JSON Schema

aci-dev-function-execute-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FunctionExecute",
  "properties": {
    "function_input": {
      "type": "object",
      "title": "Function Input",
      "description": "The input parameters for the function."
    },
    "linked_account_owner_id": {
      "type": "string",
      "maxLength": 255,
      "title": "Linked Account Owner Id",
      "description": "The owner id of the linked account. This is the id of the linked account owner in the linked account provider."
    }
  },
  "type": "object",
  "required": [
    "linked_account_owner_id"
  ]
}