I've created a custom connector which I initially only used in Power Automate. This custom connector uses dynamic schemas to determine the result object based on the input parameters. This is done in the swagger definition of the custom connector as described here https://docs.microsoft.com/en-us/connectors/custom-connectors/openapi-extensions#use-dynamic-values
This works fine in Power Automate. When I select some input data I can see a call in the network tab in developer tools in the browser, and i'm able to use my schema in the next steps in my flow.
However, when I use this same connector in PowerApps, I never get a result object. I'm unable to select any fields or use anything of the result of my calls. When I put the output directly in a variable or collection, I see something is in there, but i'm not able to use it. It doesn't have any named fields.
When I monitor this using developer tools in my browser, I see the actual data call with data returned. But never a schema call.
My question is, is dynamic schemas supported in PowerApps for a custom connector? And if so, is there anything specific I need to do to make this work?