{
"type": "object",
"properties": {
"filename": {
"type": "string",
"minLength": 1,
"description": "Document filename including its supported extension."
},
"content_base64": {
"type": "string",
"minLength": 1,
"description": "Raw base64 document bytes without a data URL prefix."
},
"content_type": {
"type": "string",
"minLength": 1,
"description": "Optional MIME type, such as application/pdf."
}
},
"required": [
"filename",
"content_base64"
],
"additionalProperties": false
}