addedInput schema / properties / assessmentPurpose / enum
Added value: +[
+ "annual-review",
+ "due-diligence",
+ "audit",
+ "board-report"
+]
addedInput schema / properties / company / properties
Added value: +{
+ "isRegulated": {
+ "type": "boolean"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
addedInput schema / properties / riskFramework / items
Added value: +{
+ "enum": [
+ "cyber",
+ "financial",
+ "operational",
+ "regulatory",
+ "esg",
+ "concentration"
+ ],
+ "type": "string"
+}
addedInput schema / properties / vendors / items
Added value: +{
+ "properties": {
+ "annualSpendEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "category": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "contractExpiryMonths": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "criticality": {
+ "enum": [
+ "critical",
+ "important",
+ "standard",
+ "low"
+ ],
+ "type": "string"
+ },
+ "dataAccess": {
+ "type": "boolean"
+ },
+ "id": {
+ "maxLength": 20,
+ "type": "string"
+ },
+ "iso27001": {
+ "type": "boolean"
+ },
+ "knownIssues": {
+ "items": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "maxItems": 5,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 100,
+ "type": "string"
+ },
+ "soc2": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "category"
+ ],
+ "type": "object"
+}
addedInput schema / properties / vendors / maxItems
Added value: +50
addedInput schema / properties / vendors / minItems
Added value: +3
addedInput schema / required
Added value: +[
+ "company",
+ "vendors"
+]