addedInput schema / properties / budget / properties
Added value: +{
+ "annualEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "perFteEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / budget / required
Added value: +[
+ "annualEur"
+]
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
addedInput schema / properties / learningNeeds / items
Added value: +{
+ "properties": {
+ "currentCoverage": {
+ "enum": [
+ "none",
+ "partial",
+ "moderate"
+ ],
+ "type": "string"
+ },
+ "priority": {
+ "enum": [
+ "critical",
+ "high",
+ "medium"
+ ],
+ "type": "string"
+ },
+ "skill": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+ },
+ "required": [
+ "skill",
+ "priority",
+ "currentCoverage"
+ ],
+ "type": "object"
+}
addedInput schema / properties / learningNeeds / maxItems
Added value: +10
addedInput schema / properties / learningNeeds / minItems
Added value: +3
addedInput schema / properties / team / properties
Added value: +{
+ "departments": {
+ "items": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maxItems": 8,
+ "minItems": 1,
+ "type": "array"
+ },
+ "growthRate": {
+ "maxLength": 50,
+ "minLength": 2,
+ "type": "string"
+ },
+ "size": {
+ "maximum": 5000,
+ "minimum": 1,
+ "type": "number"
+ }
+}
addedInput schema / properties / team / required
Added value: +[
+ "size",
+ "departments",
+ "growthRate"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "team",
+ "learningNeeds",
+ "budget"
+]