---
title: "Characteristics"
url: "https://real-estate-agency.apim.eu/apis/cost-estimation/versions/26a287d6-a67c-4989-b0bd-79a9db45597a/schemas/Characteristics"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/cost-estimation/versions/26a287d6-a67c-4989-b0bd-79a9db45597a.md

# Characteristics

Freeform agent description, used when no agent deployment record exists.

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Cost & ROI Estimation
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
components:
  schemas:
    Characteristics:
      type: object
      description: Freeform agent description, used when no agent deployment record exists.
      required:
        - category
        - business_unit
        - integration_count
      properties:
        category:
          type: string
          enum:
            - copilot
            - autonomous-agent
            - workflow-agent
            - rag-assistant
            - voice-agent
        business_unit:
          type: string
          example: Customer Success
        integration_count:
          type: number
          format: float
          example: 6
        tool_count:
          type: number
          format: float
          example: 4
        expected_monthly_requests:
          type: number
          format: float
          example: 250000
        model_release_date:
          type: string
          format: date
          example: 2026-02-01
        maturity:
          type: string
          enum:
            - pilot
            - stabilizing
            - mature
            - legacy
        deployment_tier:
          type: string
          enum:
            - sandbox
            - pilot
            - production
        has_rag:
          type: boolean
          example: true
        has_tool_use:
          type: boolean
          example: true
        has_human_in_loop:
          type: boolean
          example: false
```
