How do I Create a Transformation with an Array?
FollowWhen defining a common resource with an array, use the following format:
keyToArray[*].keyToValuesInArray
This will result in:
{
"keyToArray": [
“keyToValuesInArray”: “1”,
“keyToValuesInArray”: “2"
]
}
Good:
Bad (note the missing asterisk inside the brackets):
Comments
0 comments
Please sign in to leave a comment.