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 / contentBudgetEur / minimum
Added value: +0
addedInput schema / properties / customers / items
Added value: +{
+ "properties": {
+ "arrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "id": {
+ "maxLength": 20,
+ "type": "string"
+ },
+ "industry": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "keyContact": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "npsScore": {
+ "maximum": 10,
+ "minimum": 0,
+ "type": "number"
+ },
+ "referenceWilling": {
+ "type": "boolean"
+ },
+ "tenure": {
+ "maxLength": 50,
+ "type": "string"
+ },
+ "usageRatePct": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "useCase": {
+ "maxLength": 300,
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name"
+ ],
+ "type": "object"
+}
addedInput schema / properties / customers / maxItems
Added value: +30
addedInput schema / properties / customers / minItems
Added value: +3
addedInput schema / properties / goals / items
Added value: +{
+ "enum": [
+ "case-studies",
+ "testimonials",
+ "referrals",
+ "ambassadors",
+ "community",
+ "upsell"
+ ],
+ "type": "string"
+}
addedInput schema / properties / goals / maxItems
Added value: +6
addedInput schema / properties / goals / minItems
Added value: +1
addedInput schema / properties / product / properties
Added value: +{
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / product / required
Added value: +[
+ "name"
+]
addedInput schema / properties / targetUseCases / items
Added value: +{
+ "maxLength": 200,
+ "type": "string"
+}
addedInput schema / properties / targetUseCases / maxItems
Added value: +5
addedInput schema / required
Added value: +[
+ "company",
+ "product",
+ "customers",
+ "goals"
+]