I am doing the following query to the RDMS API:
query='Variable.is=Consumption+Dataset.In.is=ECMWF.Ens Weekly Long Term&MaxResults=10000'
result = requests.get('https://sprod1.rdms.refinitiv.com/api/v1/Metadata/Search?query='+query, headers=headers, verify=True)
values = result.json()
It returns other variables than consumption, like wind etc, meaning the + operator does not filter as I want to. How can I return only consumption curves?