ACI.dev · Schema

LinkedAccountPublic

Agent InfrastructureAgentsAIArtificial IntelligenceFunction CallingMCPModel Context ProtocolOAuthOpen SourceTool CallingVibeOps

Properties

Name Type Description
id string
project_id string
app_name string
linked_account_owner_id string
security_scheme object
enabled boolean
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

aci-dev-linked-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LinkedAccountPublic",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "project_id": {
      "type": "string",
      "format": "uuid",
      "title": "Project Id"
    },
    "app_name": {
      "type": "string",
      "title": "App Name"
    },
    "linked_account_owner_id": {
      "type": "string",
      "title": "Linked Account Owner Id"
    },
    "security_scheme": {
      "$ref": "#/components/schemas/SecurityScheme"
    },
    "enabled": {
      "type": "boolean",
      "title": "Enabled"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "title": "Created At"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "title": "Updated At"
    }
  },
  "type": "object",
  "required": [
    "id",
    "project_id",
    "app_name",
    "linked_account_owner_id",
    "security_scheme",
    "enabled",
    "created_at",
    "updated_at"
  ]
}