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 / deals / items
Added value: +{
+ "properties": {
+ "arrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "closingDate": {
+ "type": "string"
+ },
+ "cogsEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "competitors": {
+ "items": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "maxItems": 3,
+ "minItems": 0,
+ "type": "array"
+ },
+ "discountPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "id": {
+ "maxLength": 50,
+ "minLength": 1,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "urgency": {
+ "enum": [
+ "high",
+ "medium",
+ "low"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "arrEur",
+ "discountPct"
+ ],
+ "type": "object"
+}
addedInput schema / properties / deals / maxItems
Added value: +15
addedInput schema / properties / deals / minItems
Added value: +2
addedInput schema / properties / product / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "targetGrossMarginPct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name",
+ "targetGrossMarginPct"
+]
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "deals"
+]