JSON DataTransforms
When retrieving data from Microsoft Graph API you would often get a json response containing a key:value pair in return (i.e. assignments in the below example json).
{ "value": [ { "createdBy": { "user": { "id": "6463a5ce-2119-4198-9f2a-628761df4a62" } }, "planId": "xqQg5FS2LkCp935s-FIFm2QAFkHM", "bucketId": "gcrYAaAkgU2EQUvpkNNXLGQAGTtu", "title": "title-value", "orderHint": "9223370609546166567W", "assigneePriority": "90057581\"", "createdDateTime": "2015-03-25T18:36:49.2407981Z", "assignments": { "fbab97d0-4932-4511-b675-204639209557": { "@odata.type": "#microsoft.graph.plannerAssignment", "assignedBy": { "user": { "id": "1e9955d2-6acd-45bf-86d3-b546fdc795eb" } }, "assignedDateTime": "2015-03-25T18:38:21.956Z", "orderHint": "RWk1" } }, "id":"01gzSlKkIUSUl6DF_EilrmQAKDhh" } ] }
I cannot find any information on how such objects are to be mapped using the JSON DataTransformation. Does anyone know how this is to be solved or a link to relevant documentation Thx
***Edited by Moderator Rupashree S. to add Capability tags***