---
title: "AgentInput"
url: "https://nexora.apim.eu/apis/agent-deployments/versions/3a3ada6b-888e-498a-bfb3-a134ac91f753/schemas/AgentInput"
---

> Full API specification: https://nexora.apim.eu/apis/agent-deployments/versions/3a3ada6b-888e-498a-bfb3-a134ac91f753.md

# AgentInput

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Agent Deployments
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
components:
  schemas:
    AgentCategory:
      type: string
      enum:
        - copilot
        - autonomous-agent
        - workflow-agent
        - rag-assistant
        - voice-agent
      example: copilot
    DeploymentTier:
      type: string
      enum:
        - sandbox
        - pilot
        - production
      example: pilot
    OwningTeam:
      type: object
      required:
        - business_unit
      properties:
        owning_team:
          type: string
          example: Support Engineering
        business_unit:
          type: string
          example: Customer Success
        cost_center:
          type: string
          example: CC-4021
        data_scope_precision:
          type: string
          description: Controls how precisely the owning team appears in the catalog entry.
          enum:
            - department-only
            - business-unit
            - org-wide
          default: business-unit
    ComplianceCertification:
      type: object
      description: Figures needed to publish a catalog entry.
      properties:
        cert_type:
          type: string
          enum:
            - SOC2
            - ISO27001
            - GDPR
            - HIPAA
        assessment_method:
          type: string
          enum:
            - self_attested
            - third_party_audited
        guardrail_policy_attached:
          type: string
          example: content-safety-v3
        last_audit_year:
          type: integer
          example: 2026
        data_classification_level:
          type: string
          enum:
            - public
            - internal
            - confidential
            - restricted
        valid_until:
          type: string
          format: date
          example: 2027-04-30
        exemption:
          type: string
          description: Set when no certification is currently required.
          enum:
            - pilot_program
            - internal_only_no_external_data
    ChargebackInfo:
      type: object
      properties:
        rate_percent:
          type: number
          format: float
          example: 12
        note:
          type: string
          example: includes shared platform overhead
    AgentInput:
      type: object
      required:
        - category
        - title
        - owning_team
      properties:
        category:
          $ref: "#/components/schemas/AgentCategory"
        deployment_tier:
          $ref: "#/components/schemas/DeploymentTier"
        title:
          type: string
          maxLength: 120
          example: Internal Support Triage Copilot
        description:
          type: string
          example: Triages inbound support tickets and drafts first-response replies for
            human review.
        owning_team:
          $ref: "#/components/schemas/OwningTeam"
        integration_count:
          type: integer
          example: 6
        tool_count:
          type: integer
          example: 4
        model_provider:
          type: string
          example: Anthropic Claude
        model_release_date:
          type: string
          format: date
          example: 2026-02-01
        cost_per_1k_tokens_usd:
          type: number
          format: float
          example: 0.015
        monthly_budget_usd:
          type: integer
          example: 4000
        support_budget_usd:
          type: integer
          example: 500
        available_from:
          type: string
          format: date
          example: 2026-11-01
        compliance_certification:
          $ref: "#/components/schemas/ComplianceCertification"
        chargeback:
          $ref: "#/components/schemas/ChargebackInfo"
```
