I have the following JSON output:
{
  "201110131738QP27N": {
    "parent": 17,
    "name": "CentralServer",
    "status": "Active",
    "count": 6
  },
  "201803271459ICV69": {
    "name": "subaccount1",
    "status": "Active",
    "count": 1
  },
  "2018032715008ZM2G": {
    "name": "subaccount2",
    "status": "Active",
    "count": 1
  },
  "201803281536PSKR4": {
    "name": "Este e um teste",
    "status": "Active"
  }
}
And I'm trying to get only the following data:
201110131738QP27N
201803271459ICV69
2018032715008ZM2G
201803281536PSKR4
To get the desired data, I'm trying to use the jq command, but so far I have not succeeded.
 
     
     
    