---
title: "Template"
url: "https://real-estate-agency.apim.eu/apis/agent-catalog/versions/fa44b0ce-8be5-4345-b3ca-97adeccf8c16/schemas/Template"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/agent-catalog/versions/fa44b0ce-8be5-4345-b3ca-97adeccf8c16.md

# Template

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Agent Catalog
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
components:
  schemas:
    Section:
      type: string
      description: Content block of the catalog entry.
      enum:
        - capabilities
        - data_scope
        - integrations
        - compliance
        - target_teams
        - rollout_history
    Template:
      type: object
      properties:
        id:
          type: string
          example: tpl_standard
        name:
          type: string
          example: Standard
        description:
          type: string
          example: Balanced layout covering capabilities, data scope, integrations and
            compliance.
        sections:
          type: array
          items:
            $ref: "#/components/schemas/Section"
```
