How can one declare the return type for a Formula that returns an Array of Objects, say like:
[{'id': 'abc123', 'name': 'alice'}, {'id': 'xyz789', 'name': 'bob'}, ...]
I’m guessing you specify in the addFormula param object:
...
resultType: coda.ValueType.Array,
items: { type: coda.ValueType.Object },
...
But where can you specify that the items have a schema mySchema?