I know we can make a resource embeddable in another resource, however below schema does not seems to be working? what is the right way to make an array of resources embeddable in another resource?
outer = {
'type': 'dict',
'schema': {
'inner': {
'type': 'list',
'schema': {
'type': 'objectid',
'required': True,
'data_relation': {
'resource': 'other_resources',
'embeddable': True,
},
},
},
}
}