addedInput schema / properties / company / properties
Added value: +{
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "revenueEur": {
+ "type": "number"
+ },
+ "sector": {
+ "type": "string"
+ },
+ "totalAnnualSpendEur": {
+ "type": "number"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte",
+ "revenueEur",
+ "totalAnnualSpendEur"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / spendCategories / items
Added value: +{
+ "properties": {
+ "annualSpendEur": {
+ "type": "number"
+ },
+ "category": {
+ "type": "string"
+ },
+ "description": {
+ "maxLength": 300,
+ "type": "string"
+ },
+ "supplierCount": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "category",
+ "annualSpendEur",
+ "supplierCount"
+ ],
+ "type": "object"
+}
addedInput schema / properties / spendCategories / maxItems
Added value: +20
addedInput schema / properties / spendCategories / minItems
Added value: +5
addedInput schema / properties / topSuppliers / items
Added value: +{
+ "properties": {
+ "annualSpendEur": {
+ "type": "number"
+ },
+ "category": {
+ "type": "string"
+ },
+ "contractEnd": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "notes": {
+ "maxLength": 300,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "category",
+ "annualSpendEur"
+ ],
+ "type": "object"
+}
addedInput schema / properties / topSuppliers / maxItems
Added value: +50
addedInput schema / properties / topSuppliers / minItems
Added value: +10
addedInput schema / required
Added value: +[
+ "company",
+ "spendCategories",
+ "topSuppliers"
+]