I'm trying to figure out how I would parse the following information:
{
'unknown-value': {
name: 'AB',
id: 'BLUE'
},
'unknown-value': {
name: 'AC',
id: 'PURPLE'
}
}
Wanting to parse them then create an array of values like these:
names = ['AB', 'AC']
ids = ['BLUE', 'PURPLE']
Haven't come across something like this where it isn't an array of objects so I'm a little stumped on what to do.