---
title: "Feedback"
url: "https://real-estate-agency.apim.eu/apis/viewing-appointments/versions/70b37971-1301-4569-bd6c-e68e8b19e7e2/schemas/Feedback"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/viewing-appointments/versions/70b37971-1301-4569-bd6c-e68e8b19e7e2.md

# Feedback

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Viewing Appointments
  version: 1.0.0
servers:
  - url: https://api.realestateagency.example/v1
    description: Production
  - url: https://sandbox.api.realestateagency.example/v1
    description: Sandbox
components:
  schemas:
    Feedback:
      type: object
      properties:
        id:
          type: string
          example: fb_60d2
        appointment_id:
          type: string
          example: appt_9a44
        lead_id:
          type: string
          example: lead_71ab
        interest:
          type: string
          example: still_considering
        price_assessment:
          type: string
          example: too_high
        comment:
          type: string
          example: Layout works well, but the price is above what we had in mind.
        created_at:
          type: string
          format: date-time
          example: 2026-09-03T17:12:00Z
```
