addedInput schema / properties / brand / properties
Added value: +{
+ "geographies": {
+ "items": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "maxItems": 6,
+ "minItems": 1,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 150,
+ "minLength": 3,
+ "type": "string"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "series-a",
+ "series-b",
+ "scale-up",
+ "established"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / brand / required
Added value: +[
+ "name",
+ "sector",
+ "stage",
+ "geographies"
+]
addedInput schema / properties / existingAssets / properties
Added value: +{
+ "colorHexIfAny": {
+ "maxLength": 7,
+ "type": "string"
+ },
+ "taglineIfAny": {
+ "maxLength": 120,
+ "type": "string"
+ },
+ "voiceDescIfAny": {
+ "maxLength": 200,
+ "type": "string"
+ }
+}
addedInput schema / properties / founder / properties
Added value: +{
+ "storyOrigin": {
+ "maxLength": 600,
+ "minLength": 20,
+ "type": "string"
+ },
+ "values": {
+ "items": {
+ "maxLength": 60,
+ "minLength": 2,
+ "type": "string"
+ },
+ "maxItems": 7,
+ "minItems": 2,
+ "type": "array"
+ },
+ "vision": {
+ "maxLength": 300,
+ "minLength": 10,
+ "type": "string"
+ }
+}
addedInput schema / properties / founder / required
Added value: +[
+ "storyOrigin",
+ "vision",
+ "values"
+]
addedInput schema / properties / target / properties
Added value: +{
+ "competitors": {
+ "items": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ },
+ "icp": {
+ "maxLength": 300,
+ "minLength": 10,
+ "type": "string"
+ },
+ "painPoints": {
+ "items": {
+ "maxLength": 200,
+ "minLength": 5,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 2,
+ "type": "array"
+ }
+}
addedInput schema / properties / target / required
Added value: +[
+ "icp",
+ "painPoints",
+ "competitors"
+]
addedInput schema / required
Added value: +[
+ "founder",
+ "brand",
+ "target"
+]