---
title: "Bewertung"
url: "https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f/schemas/Bewertung"
---

> Full API specification: https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f.md

# Bewertung

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Interessenten & Leads
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox
components:
  schemas:
    Kriterium:
      type: object
      properties:
        kriterium:
          type: string
          example: kaufpreis
        erfuellt:
          type: boolean
          example: true
        gewicht:
          type: integer
          example: 30
    Bewertung:
      type: object
      properties:
        anfrage_id:
          type: string
          example: anf_5c02
        interessent_id:
          type: string
          example: int_71ab
        punkte:
          type: integer
          minimum: 0
          maximum: 100
          example: 82
        einstufung:
          type: string
          enum:
            - niedrig
            - mittel
            - hoch
        kriterien:
          type: array
          items:
            $ref: "#/components/schemas/Kriterium"
```
