addedInput schema / properties / benchmarks / properties
Added value: +{
+ "arrPerEmployee": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "targetArrPerEmployee": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
addedInput schema / properties / constraints / items
Added value: +{
+ "maxLength": 200,
+ "type": "string"
+}
addedInput schema / properties / constraints / maxItems
Added value: +5
addedInput schema / properties / currentTeam / properties
Added value: +{
+ "departments": {
+ "items": {
+ "properties": {
+ "annualCostPerHeadEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "currentHeadcount": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "openPositions": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "productivityMetric": {
+ "maxLength": 100,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "currentHeadcount"
+ ],
+ "type": "object"
+ },
+ "maxItems": 10,
+ "minItems": 1,
+ "type": "array"
+ },
+ "totalHeadcount": {
+ "minimum": 0,
+ "type": "integer"
+ }
+}
addedInput schema / properties / currentTeam / required
Added value: +[
+ "totalHeadcount",
+ "departments"
+]
addedInput schema / properties / financials / properties
Added value: +{
+ "currentArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "currentBurnEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "targetArrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "timeframeMonths": {
+ "maximum": 36,
+ "minimum": 6,
+ "type": "integer"
+ }
+}
addedInput schema / properties / financials / required
Added value: +[
+ "currentArrEur",
+ "targetArrEur",
+ "timeframeMonths"
+]
addedInput schema / properties / hiringBudgetEur / minimum
Added value: +0
addedInput schema / required
Added value: +[
+ "company",
+ "financials",
+ "currentTeam"
+]