I need some help to get an item from a nested JSONschema in DynamoDB. I will explain to you the schema and you can tell me if it's possible.
The schema is:
{
"updated_at": "2018/05/02 08:32:10",
"created_at": "2018/05/02 08:32:10",
"updated_by": "igor",
"created_by": "igor",
"application": [
{
"name": "driver app",
"features": [
{
"name": "passenger list",
"settings": [],
"description": "feature for passenger list",
"id": 2
}
],
"id": 1,
"url": "play store"
},
{
"name": "passsenger app",
"features": [],
"id": 2,
"url": "play store"
}
],
"address": "New York",
"id": 4,
"url": "https://airlink.moovex.com",
"name": "airlink",
"service_locations": [
{
"title": "IL",
"latitude": 32,
"longitude": 35
}
]
}
I need to fetch from my application list the object by id with a query.