addedInput schema / properties / company / properties
Added value: +{
+ "arrEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "foundedYear": {
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "sector": {
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "foundedYear"
+]
addedInput schema / properties / currentCapTable / properties
Added value: +{
+ "esopPoolUnallocatedShares": {
+ "type": "number"
+ },
+ "holders": {
+ "items": {
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "shares": {
+ "type": "number"
+ },
+ "type": {
+ "enum": [
+ "founder",
+ "co-founder",
+ "early-employee",
+ "esop-pool",
+ "angel",
+ "vc-seed",
+ "vc-series-a",
+ "vc-series-b",
+ "vc-series-c",
+ "vc-later",
+ "advisor",
+ "secondary-buyer"
+ ],
+ "type": "string"
+ },
+ "vestingSchedule": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "type",
+ "shares"
+ ],
+ "type": "object"
+ },
+ "maxItems": 20,
+ "minItems": 3,
+ "type": "array"
+ },
+ "safeNotesOutstandingEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "totalSharesOutstanding": {
+ "type": "number"
+ }
+}
addedInput schema / properties / currentCapTable / required
Added value: +[
+ "totalSharesOutstanding",
+ "holders",
+ "esopPoolUnallocatedShares"
+]
addedInput schema / properties / focus / maxLength
Added value: +400
addedInput schema / properties / founderObjectives / maxLength
Added value: +800
addedInput schema / properties / founderObjectives / minLength
Added value: +20
addedInput schema / properties / plannedRounds / items
Added value: +{
+ "properties": {
+ "expectedTimeline": {
+ "type": "string"
+ },
+ "roundType": {
+ "enum": [
+ "seed",
+ "series-a",
+ "series-b",
+ "series-c",
+ "series-d-plus",
+ "bridge",
+ "secondary"
+ ],
+ "type": "string"
+ },
+ "targetAmountEur": {
+ "type": "number"
+ },
+ "targetPreMoneyEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "roundType",
+ "targetAmountEur",
+ "targetPreMoneyEur",
+ "expectedTimeline"
+ ],
+ "type": "object"
+}
addedInput schema / properties / plannedRounds / maxItems
Added value: +4
addedInput schema / properties / plannedRounds / minItems
Added value: +1
addedInput schema / required
Added value: +[
+ "company",
+ "currentCapTable",
+ "founderObjectives",
+ "plannedRounds"
+]