アップロードされたマルチメディア ファイル (オーディオ、ビデオ、または jpg) を保存するために使用できる "Multimedia.json" という名前のモデルの例を教えてください。具体的には、「マルチメディア」や「バイナリ」と呼ばれるタイプはありますか?ストロングループ方式の戦略はありますか? ありがとう、
{
"name": "Multimedia",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true
},
"properties": {
"title": {
"type": "string",
"required":true
},
"description": {
"type": "string"
},
"category": {
"type": "string" ---can this be a type called binary?
}
},
"validations": [],
"relations": {
"report": {
"type": "belongsTo",
"model": "Report",
"foreignKey": ""
}
},
"acls": [],
"methods": []
}