I have this json file:
{
"entityId": "12345",
"displayName": "hostabc",
"toRelationships": {
"isProcessOf": [
{
"id": "proce123D00BB86",
"type": "PROCESS_GROUP_INSTANCE"
},
{
"id": "proc678DD0DBA4",
"type": "PROCESS_GROUP_INSTANCE"
},
{
"id": "proc978DD0DBA4",
"type": "PROCESS_GROUP_INSTANCE"
}
]
}
}
I need to extract id fields under isProcessOf and build a data list.
I am new to python, how would I do this?