Is there any way to get the length from the following:
{
    "11": {
        "id": "456",
        "uuid": "b596362a-b5bb-4n94-8fd5-1e9fh6fd877b",
        "name": "Test",
        "description": "Test"
    },
    "22": {
        "id": "739",
        "uuid": "c4ccbddf-5177-482f-b5e8-cdd4f699e6b7",
        "name": "Test2",
        "description": "Test2"
    },
    "33": {
        "id": "737",
        "uuid": "m4ccbddv-5177-482f-b5e8-cdd4f699e6b7",
        "name": "Test3",
        "description": "Test3"
    }
}
The length should be 3. I tried to use JSON.stringify(data).length but this gives the length of the whole string.
 
     
     
     
    