Hi @RezaDorrani , I have a json repsonse from flow in the below format . I tried reading the notAllowedInfo Array into an collection in canvas app . Tried parsing the Json using Table(ParseJson(Text(ThisRecord.notAllowedInfo))) but unable to get correct data . I tried retrieving status value which is a text and it worked . Can you help here please

 

{
    "type""object",
    "properties": {
        "nonProductiveEvents": {
            "type""array",
            "items": {
                "type""object",
                "properties": {
                    "payID": {
                        "type""string"
                    },
                    "nonProductiveEvent": {
                        "type""object",
                        "properties": {
                            "eventStartDate": {
                                "type""string"
                            },
                            "eventStartHour": {
                                "type""integer"
                            },
                            "eventStartMinute": {
                                "type""integer"
                            },
                            "eventEndHour": {
                                "type""integer"
                            },
                            "eventEndMinute": {
                                "type""integer"
                            },
                            "isFullDayEventIndicator": {
                                "type""boolean"
                            },
                            "nonProductiveEventType": {
                                "type""string"
                            }
                        }
                    },
                    "status": {
                        "type""string"
                    },
                    "notAllowedInfo": {
                        "type""array",
                        "items": {
                            "type""string"
                        }
                    }
                },
                "required": [
                    "payID",
                    "nonProductiveEvent",
                    "status"
                ]
            }
        },
        "isAllowedIndicator": {
            "type""boolean"
        },
        "capacityPlanIssues": {}
    }
}