I got this JSON data as below and want to get the ip_address and '5865cdc5-0f8c-481b-aaa7-4adfe6cf96ae' can be any string.
history': {
'5865cdc5-0f8c-481b-aaa7-4adfe6cf96ae': {
'profile': [
{
'category': 'Linux',
'time_stamp': 1489120439.877187,
'detected_time': '2017-03-10T04:33:59Z',
'os': 'Linux',
'collector_type': 'dhcp'
}
],
'ip_address': [
{
'ip': '10.204.49.218',
'detected_time': '2017-03-10T04:33:59Z',
'hostname': 'pxe-dev',
'collector_type': 'dhcp',
'time_stamp': 1489120439.875652
}
]
}
}
I want to get the 'ip_address' array. Any help please