AiAgentVersion
Represents a version of an AI Agent in the AI Agent Registry.
type AiAgentVersion {
id: ID!
externalId: ID
version: String
name: String!
description: String
agentStatus: String
agentTasks: [AiAgentTask!]
agentGuardrails: [AiAgentGuardrail!]
tags: [AiAgentTag!]
llms: [AiAgentLlm!]
auditData: AiRegistryEntityAuditData
isDeleted: Boolean
trustLevel: AiAgentRegistryTrustLevel
agentTools: [AiAgentTool!]
versionMetadata: String
}
Fields
AiAgentVersion.id ● ID! non-null scalar miscellaneous
Unique identifier for the AI Agent version in the registry.
AiAgentVersion.externalId ● ID scalar miscellaneous
External identifier from the provider system (e.g., AWS Bedrock, Salesforce).
AiAgentVersion.version ● String scalar miscellaneous
Specifies the version of the AI agent. Values can be null, DRAFT or a numeric value.
AiAgentVersion.name ● String! non-null scalar miscellaneous
Defines the unique identifier or title of the AI agent.
AiAgentVersion.description ● String scalar miscellaneous
Provides detailed information about the AI agent's capabilities and features.
AiAgentVersion.agentStatus ● String scalar miscellaneous
Specifies the status of the AI agent, values can be PREPARING or RUNNING.
AiAgentVersion.agentTasks ● [AiAgentTask!] list object agent-control-tower
List of tasks associated with this AI Agent version.
AiAgentVersion.agentGuardrails ● [AiAgentGuardrail!] list object agent-control-tower
List of guardrails associated with this AI Agent version.
AiAgentVersion.tags ● [AiAgentTag!] list object agent-control-tower
Optional labeling system that allows classification and organization of AI agents.
AiAgentVersion.llms ● [AiAgentLlm!] list object agent-control-tower
Array of LLMs.
AiAgentVersion.auditData ● AiRegistryEntityAuditData object agent-control-tower
Audit data.
AiAgentVersion.isDeleted ● Boolean scalar miscellaneous
Indicates if this AI agent has been deleted.
AiAgentVersion.trustLevel ● AiAgentRegistryTrustLevel enum agent-control-tower
Indicates the confidence and reliability level of the AI agent.
AiAgentVersion.agentTools ● [AiAgentTool!] list object agent-control-tower
Tools and integrations associated with this AI Agent version.
AiAgentVersion.versionMetadata ● String scalar miscellaneous
Optional metadata for the version in JSON format.
Member Of
AiAgent object ●
AiAgentGuardrail object ●
AiAgentLlm object ●
AiAgentTask object ●
AiAgentTool object