ACI.dev · Schema

FunctionExecutionResult

Agent InfrastructureAgentsAIArtificial IntelligenceFunction CallingMCPModel Context ProtocolOAuthOpen SourceTool CallingVibeOps

Properties

Name Type Description
success boolean
data object
error object
View JSON Schema on GitHub

JSON Schema

aci-dev-function-execution-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FunctionExecutionResult",
  "properties": {
    "success": {
      "type": "boolean",
      "title": "Success"
    },
    "data": {
      "anyOf": [
        {},
        {
          "type": "null"
        }
      ],
      "title": "Data"
    },
    "error": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Error"
    }
  },
  "type": "object",
  "required": [
    "success"
  ]
}