addedInput schema / properties / audit / properties
Added value: +{
+ "auditor": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "scheduledDate": {
+ "type": "string"
+ },
+ "scope": {
+ "maxLength": 300,
+ "minLength": 5,
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "statutory",
+ "internal",
+ "due-diligence",
+ "ipo-readiness",
+ "sox"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / audit / required
Added value: +[
+ "type"
+]
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ },
+ "stage": {
+ "enum": [
+ "pre-seed",
+ "seed",
+ "serie-a",
+ "serie-b",
+ "serie-c",
+ "serie-d-plus",
+ "profitable-sme",
+ "enterprise"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "stage"
+]
addedInput schema / properties / financials / properties
Added value: +{
+ "annualRevenueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "closingDateLastYear": {
+ "type": "string"
+ },
+ "totalAssetsEur": {
+ "minimum": 0,
+ "type": "number"
+ }
+}
addedInput schema / properties / financials / required
Added value: +[
+ "annualRevenueEur",
+ "totalAssetsEur"
+]
addedInput schema / properties / knownIssues / items
Added value: +{
+ "maxLength": 300,
+ "minLength": 5,
+ "type": "string"
+}
addedInput schema / properties / knownIssues / maxItems
Added value: +6
addedInput schema / properties / knownIssues / minItems
Added value: +0
addedInput schema / properties / systems / items
Added value: +{
+ "maxLength": 100,
+ "type": "string"
+}
addedInput schema / properties / systems / maxItems
Added value: +8
addedInput schema / properties / systems / minItems
Added value: +0
addedInput schema / required
Added value: +[
+ "company",
+ "audit",
+ "financials",
+ "knownIssues",
+ "systems"
+]