addedInput schema / properties / analysisPeriodDays / maximum
Added value: +365
addedInput schema / properties / analysisPeriodDays / minimum
Added value: +7
changedInput schema / properties / analysisPeriodDays / type
Previous value: -"number"New value: +"integer"
addedInput schema / properties / company / properties
Added value: +{
+ "country": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "revenueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte",
+ "revenueEur",
+ "country"
+]
addedInput schema / properties / focus / maxLength
Added value: +500
addedInput schema / properties / transactionVolumes / properties
Added value: +{
+ "bankTransactionsPerMonth": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "expenseReportsPerMonth": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "supplierInvoicesPerMonth": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "totalAmountEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / transactionVolumes / required
Added value: +[
+ "bankTransactionsPerMonth",
+ "supplierInvoicesPerMonth",
+ "expenseReportsPerMonth",
+ "totalAmountEur"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "analysisPeriodDays",
+ "transactionVolumes"
+]