I'm trying to create an LLD based on a single JSON array. The JSON looks like this:
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 100,
"message": "OK",
"totalitems": "",
"itemsperpage": ""
},
"data": {
"users": [
"user1",
"user2",
"user3"
]
}
}
}
```
As JSON Path I have tried the following:
`$.ocs.data.users[]`
But this not work. :/ Someone an idea?
```
{
"ocs": {
"meta": {
"status": "ok",
"statuscode": 100,
"message": "OK",
"totalitems": "",
"itemsperpage": ""
},
"data": {
"users": [
"user1",
"user2",
"user3"
]
}
}
}
```
As JSON Path I have tried the following:
`$.ocs.data.users[]`
But this not work. :/ Someone an idea?