I have a JSON file which looks like this
[
{
Mem id:12345
DOB: 04041994
},
{
Mem id:5678
DOB: 05061987
}
]
I want to take each mem details and validate in my application using loops. The size is dynamic one. Can you please tell me how to do that.
I tried to get it loops but it taking entire content from it. I’m new to tosca.