---
title: "Comparable"
url: "https://real-estate-agency.apim.eu/apis/market-valuation/versions/3b18507e-d857-48a4-a3bc-b79b2eb2cfa4/schemas/Comparable"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/market-valuation/versions/3b18507e-d857-48a4-a3bc-b79b2eb2cfa4.md

# Comparable

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Market Valuation
  version: 1.0.0
servers:
  - url: https://api.realestateagency.example/v1
    description: Production
  - url: https://sandbox.api.realestateagency.example/v1
    description: Sandbox
components:
  schemas:
    Comparable:
      type: object
      properties:
        street_rounded:
          type: string
          example: Elm Street
        living_area_sqm:
          type: number
          format: float
          example: 82
        rooms:
          type: number
          format: float
          example: 3
        year_built:
          type: integer
          example: 1911
        sale_price_eur:
          type: integer
          example: 615000
        price_per_sqm_eur:
          type: integer
          example: 7500
        sale_month:
          type: string
          example: 2026-03
```
