About animasion .json file and .bin file

** Greetings**

I am learning to use Threejs and I’m having a problem:

I got multiple .glb model files from other sites, as well as json files and bin files about animations.
This json file and bin file should be able to be applied to multiple glb models.
But I don’t know how I should use it now.

The json file looks like this:

{
  "type": "Animations",
  "version": "0.0.1",
  "bufferLength": 5100,
  "animations": [
    {
      "target": "HipsBone",
      "animations":  {
        "translate": {
          "stride": 3,
          "components": ["x", "y", "z"],
          "frameLength": 85,
          "source": { "type": "Float32Array", "length": 255, "offset": 0 },
          "keyTime": {
            "0": 0,
            "1": 0,
            "2": 0,
            "3": 0.03333330154418945,
            "4": 0.03333330154418945,
            "5": 0.03333330154418945,
            ...
          }
        }
      }
    }
  ]
}

Now I want to know if I can use this json file for the glb model and play the animation.

Thanks