I'm trying to normalize the below json data, but the data of "permissions" array is not getting normalized. I have used the "normalize" method of the pandas but not getting the desired output. I want all the data like ("permissions.id", "permissions.self", "permissions.holder.type" and so on) inside the permissions array for every object(there will be multiple objects in that) Can any one help me out for this?
{
"permissionSchemes": [
{
"expand": "permissions,user,group,projectRole,field,all",
"id": 10002,
"self": "https://api.atlassian.com/ex/jira/bacd1a93-d349-44c5-b786-b79cc80f7d31/rest/api/3/permissionscheme/10002",
"name": "CDP: Simplified Permission Scheme",
"scope": {
"type": "PROJECT",
"project": {
"id": "10002"
}
},
"permissions": [
{
"id": 11079,
"self": "https://api.atlassian.com/ex/jira/bacd1a93-d349-44c5-b786-b79cc80f7d31/rest/api/3/permissionscheme/10002/permission/11079",
"holder": {
"type": "projectRole",
"parameter": "10106",
"expand": "projectRole"
},
"permission": "VIEW_ISSUES"
},
{
"id": 11078,
"self": "https://api.atlassian.com/ex/jira/bacd1a93-d349-44c5-b786-b79cc80f7d31/rest/api/3/permissionscheme/10002/permission/11078",
"holder": {
"type": "projectRole",
"parameter": "10106",
"expand": "projectRole"
},
"permission": "VIEW_PROJECTS"
},
]
}
]
}