我需要这个文档结构:
lessons.insert({
name: 'some_name',
audio_files: [
[
{
paths: 'paths/to/file1',
transcriptions: [
'Transcript ..........1',
'Transcript ..........2',
'Transcript ..........3',
]
}
],
[
{
paths: 'paths/to/file2',
transcriptions: [
'Transcript ..........1',
'Transcript ..........2',
'Transcript ..........3',
]
}
],
]
});
我尝试使用以下SimpleSchema来描述它:
audio_files: {
type: [[String]]
}
这是错误的配置。
我怎样才能正确地制作这个架构?