I'm sorry if that question has already been asked before, I read some topics but it didn't help me so far.
I get this JSON response from a software API :
{
u 'code': 0, u 'message': u 'Found: 367', u 'objects': {
u 'ApplicationSolution::15056': {
u 'fields': {
u 'id': u '15056',
u 'name': u 'R'
},
u 'message': u '',
u 'code': 0,
u 'class': u 'ApplicationSolution',
u 'key': u '15056'
},
u 'ApplicationSolution::15758': {
u 'fields': {
u 'id': u '15758',
u 'name': u 'Z'
},
u 'message': u '',
u 'code': 0,
u 'class': u 'ApplicationSolution',
u 'key': u '15758'
},
u 'ApplicationSolution::15053': {
u 'fields': {
u 'id': u '15053',
u 'name': u 'E'
},
u 'message': u '',
u 'code': 0,
u 'class': u 'ApplicationSolution',
u 'key': u '15053'
},
u 'ApplicationSolution::15050': {
u 'fields': {
u 'id': u '15050',
u 'name': u 'C'
},
u 'message': u '',
u 'code': 0,
u 'class': u 'ApplicationSolution',
u 'key': u '15050'
},
}
I would like to sort this response with ApplicationSolution name (objects > ApplicationSolution:xxxxx > fields > name). I try to do this with sorted but I didn't find the right syntax :(
Anyone could help me please ?
Thank you so much !