So I have this instructions:
Schema Defs: Result object: It's a map of string keys and number values
"result": { "M": { [STRING]: { "N": "401" } },
This is what I have so far
result: {
type: Object,
schema: {
// I am getting 2 errors:
// Parsing error: Unexpected token, expected "]"
// ',' expected.
[id: String]: Number
},
required: true
},
Any ideas?
It's not totally related with the topic, but I'd like to share because it could be the same issue for any others. If you have an object like that below in your database, that the key it's not defined, it could be a string or number...
And your are trying to get this data from database and it's returning nothing, and your schema looks like that:
Just add the
saveUnknown: true
as mention above!