---
title: "Merkmale"
url: "https://maklerportal.apim.eu/apis/marktwertermittlung/versions/cb8e224b-f566-49d5-9923-11559fca3319/schemas/Merkmale"
---

> Full API specification: https://maklerportal.apim.eu/apis/marktwertermittlung/versions/cb8e224b-f566-49d5-9923-11559fca3319.md

# Merkmale

Freie Objektbeschreibung, wenn kein Objektdatensatz vorliegt.

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Marktwertermittlung
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox
components:
  schemas:
    Merkmale:
      type: object
      description: Freie Objektbeschreibung, wenn kein Objektdatensatz vorliegt.
      required:
        - typ
        - plz
        - wohnflaeche_qm
      properties:
        typ:
          type: string
          enum:
            - wohnung
            - haus
            - grundstueck
            - gewerbe
        plz:
          type: string
          pattern: ^[0-9]{5}$
          example: "20251"
        wohnflaeche_qm:
          type: number
          format: float
          example: 86.5
        grundstuecksflaeche_qm:
          type: number
          format: float
          example: 412
        zimmer:
          type: number
          format: float
          example: 3
        baujahr:
          type: integer
          example: 1908
        zustand:
          type: string
          enum:
            - renovierungsbeduerftig
            - gepflegt
            - modernisiert
            - neuwertig
        ausstattung:
          type: string
          enum:
            - einfach
            - normal
            - gehoben
            - luxus
        balkon:
          type: boolean
          example: true
        aufzug:
          type: boolean
          example: false
        stellplatz:
          type: boolean
          example: false
```
