Hello,
I need some help in getting data from a JSON file. My JSON file is a multi level tab. Here is an example :
{
"LIST-PROCESSUS": [
{
"Name": "Processus 1",
"ID": "P01",
"Responsable": "Doe john",
"Critique": "false",
"LIST-TACHE": [
{
"Name": "Tache 1.1",
"ID": "T01"
},
{
"Name": "Tache 1.2",
"ID": "T02"
}
]
},
{
"Name": "Processus 2",
"ID": "P02",
"Responsable": "Dupont H.",
"Critique": "true",
"LIST-TACHE": [
{
"Name": "Tache 2.1",
"ID": "T03"
},
{
"Name": "Tache 2.2",
"ID": "T04"
},
{
"Name": "Tache 2.3",
"ID": "T05"
}
]
}
]
}
In this example, I want to repeat the "LIST-PROCESSUS.ID" for each TACHE. So it will be possible to filter with a selected Processus ID in a next step.
Is it even possible ? can someone help me ?
Regards,
Fabien