get information on storage array by id

let's say i have a nbt storage like this

{
    "player_items": [
        {
            "id": 1,
            "inventory": ["stuff"]
        },
        {
            "id": 2,
            "inventory": ["stuff"]
        },
        {
            "id": 3,
            "inventory": ["stuff"]
        }
    ]
}

it's possible to get a specific element on the array using the id?

Continue to help post