I have a SharePoint list with some project data. Some projects have an arbitrary number of intermediate milestones. I need to store some information about these milestones in the list, and use a PowerApps form for editing and creating items in this list.
The data itself is very simple, just a milestone name, a date, and a numeric value. Using text input boxes and date pickers...

I can easily create records like this:
{
"Milestones": [
{
"Name": "Milestone 1",
"Date": "12/31/2018",
"Value": 5000000
},
{
"Name": "Milestone 2",
"Date": "2/1/2019",
"Value": 5000
}
]
}
... and store them in SharePoint Multiline Text fields. However, I cannot figure out how to use this data to edit entries - I need to parse JSON, extract relevant values and populate the controls with them when the form is in Edit mode.
Any ideas?
Thanks a lot in advance!