How do I setup more than one pathPrefix for Android deep linking?

I’m trying to implement Deep Linking in my app. I have the following configuration on app.json but I only can open the app with the link containing the pathPrefix /home.

"intentFilters": [
    {
      "action": "VIEW",
      "data": [
        {
          "scheme": "https",
          "host": "api.myApp.us",
          "pathPrefix": "/home"
        },
        {
          "scheme": "https",
          "host": "api.myApp.us",
          "pathPrefix": "/balance"
        },
        {
          "scheme": "https",
          "host": "api.myApp.us",
          "pathPrefix": "/charge"
        }
      ],
      "category": [
        "BROWSABLE",
        "DEFAULT"
      ]
    }
  ],

What is the correct way to configure more than one pathPrefix? Thank you!

I would also love to know this