Raw schema
{
"type": "object",
"properties": {
"system_description": {
"description": "Written description of the AI system: what it does, who uses it, what decisions it informs, and the context it operates in. Minimum 50 characters.",
"type": "string"
},
"model_card": {
"description": "Model card or equivalent documentation (minimum 50 characters), or the exact string 'declined' to explicitly decline supplying one. Declining lowers the report's input_coverage grade.",
"type": "string"
},
"data_flows": {
"description": "Data-flow description: what data enters the system, where it comes from, where outputs go (minimum 50 characters), or the exact string 'declined' to explicitly decline. Declining lowers the report's input_coverage grade.",
"type": "string"
},
"decision_tree_answers": {
"description": "Answer indices from the free EU AI Act risk classifier decision tree; the resulting classification becomes binding evidence. Required unless skip_decision_tree is true.",
"type": [
"array",
"null"
],
"items": {
"type": "integer",
"format": "uint",
"minimum": 0
}
},
"skip_decision_tree": {
"description": "Set true to explicitly skip supplying decision-tree answers; the tree is then derived by AI and the skip is recorded in input_coverage. Exactly one of decision_tree_answers or skip_decision_tree: true must be sent.",
"type": [
"boolean",
"null"
]
}
},
"required": [
"system_description",
"model_card",
"data_flows"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EuAiActComplianceInput"
}