リソースを別のリソースに埋め込み可能にできることは知っていますが、以下のスキーマは機能していないようですか? リソースの配列を別のリソースに埋め込み可能にする正しい方法は何ですか?
outer = {
'type': 'dict',
'schema': {
'inner': {
'type': 'list',
'schema': {
'type': 'objectid',
'required': True,
'data_relation': {
'resource': 'other_resources',
'embeddable': True,
},
},
},
}
}