ACI.dev · Schema

AppBasicWithFunctions

Agent InfrastructureAgentsAIArtificial IntelligenceFunction CallingMCPModel Context ProtocolOAuthOpen SourceTool CallingVibeOps

Properties

Name Type Description
name string
description string
functions array
View JSON Schema on GitHub

JSON Schema

aci-dev-app-with-functions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AppBasicWithFunctions",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "description": {
      "type": "string",
      "title": "Description"
    },
    "functions": {
      "items": {
        "$ref": "#/components/schemas/FunctionBasic"
      },
      "type": "array",
      "title": "Functions"
    }
  },
  "type": "object",
  "required": [
    "name",
    "description",
    "functions"
  ]
}