Skip to content

Commit

Permalink
Add full RSV protocol to Import API (#19)
Browse files Browse the repository at this point in the history
* Add full RSV protocol to Import API

Not sure if the hint should be placed below Finanzbedarf (current) or below FinanzbedarfRatenschutz? Any thoughts?

* Added feedback from review

* Update README.md

* Update README.md

Co-authored-by: Susanne Grell <sgrell@users.noreply.github.com>

Co-authored-by: Susanne Grell <sgrell@users.noreply.github.com>
  • Loading branch information
HungryHarry and sgrell authored Oct 12, 2022
1 parent 0a2bd80 commit a45c716
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,13 @@ In addition there is the value "SONSTIGE" ("other")
"versicherteRisikenAntragsteller1": [ "ARBEITSLOSIGKEIT" | "ARBEITSUNFAEHIGKEIT" | "LEBEN" ],
"versicherteRisikenAntragsteller2": [ "ARBEITSLOSIGKEIT" | "ARBEITSUNFAEHIGKEIT" | "LEBEN" ]
}
"ratenschutzAntragsteller1": FinanzbedarfRatenschutz,
"ratenschutzAntragsteller2": FinanzbedarfRatenschutz
}

`fahrzeugkauf` is only processed if the `finanzierungszweck` is set to `FAHRZEUGKAUF`.

`ratenschutzAntragsteller` is only processed if no `versicherteRisikenAntragsteller` is set.

#### Fahrzeugkauf

Expand All @@ -616,7 +622,22 @@ In addition there is the value "SONSTIGE" ("other")
"ps": Integer
}

`Fahrzeugkauf` is just processed if the `Finanzierungszweck` is set to "FAHRZEUGKAUF".
#### FinanzbedarfRatenschutz

{
arbeitslosigkeitAbsicherung: RatenschutzAbsicherung,
arbeitsunfaehigkeitAbsicherung: RatenschutzAbsicherung,
todesfallAbsicherung: RatenschutzAbsicherung
}

##### RatenschutzAbsicherung

{
gewuenscht: Boolean,
kommentar: String,
vorhanden: Boolean,
wichtig: Boolean
}

## Response Format

Expand Down

0 comments on commit a45c716

Please sign in to comment.