addedInput schema / properties / aiUseCases / items
Added value: +{
+ "properties": {
+ "dataTypes": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ "description": {
+ "maxLength": 500,
+ "type": "string"
+ },
+ "impactedUsers": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "description",
+ "dataTypes",
+ "impactedUsers"
+ ],
+ "type": "object"
+}
addedInput schema / properties / aiUseCases / maxItems
Added value: +20
addedInput schema / properties / aiUseCases / minItems
Added value: +1
addedInput schema / properties / company / properties
Added value: +{
+ "country": {
+ "maxLength": 80,
+ "minLength": 2,
+ "type": "string"
+ },
+ "fte": {
+ "minimum": 1,
+ "type": "integer"
+ },
+ "jurisdictions": {
+ "items": {
+ "enum": [
+ "FR",
+ "EU",
+ "UK",
+ "US-CA",
+ "other"
+ ],
+ "type": "string"
+ },
+ "maxItems": 5,
+ "minItems": 1,
+ "type": "array"
+ },
+ "name": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ },
+ "revenueEur": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "sector": {
+ "maxLength": 120,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector",
+ "fte",
+ "revenueEur",
+ "country",
+ "jurisdictions"
+]
addedInput schema / properties / focus / maxLength
Added value: +500
addedInput schema / properties / targetFrameworks / items
Added value: +{
+ "enum": [
+ "EU AI Act",
+ "ISO 42001",
+ "NIST AI RMF",
+ "GDPR Art.22",
+ "HIPAA",
+ "AGIRC-ARRCO",
+ "UK AI Code"
+ ],
+ "type": "string"
+}
addedInput schema / properties / targetFrameworks / maxItems
Added value: +7
addedInput schema / properties / targetFrameworks / minItems
Added value: +1
addedInput schema / required
Added value: +[
+ "company",
+ "aiUseCases",
+ "targetFrameworks"
+]