Simple Event-based PQL question
Hi guys,
I am finally diving a little deeper into writing PQL audiences and have a beginner question.
Let's say I want to create an audience that includes anyone who has seen at least one web page view.
{
"name": "People with page views",
"profileInstanceId": "ups",
"description": "People who have seen the website i.e., have created at least one page view event",
"type": "SegmentDefinition",
"expression": {
"type": "PQL",
"format": "pql/text",
"value": "exists(event => event.web.webPageDetails.pageViews.value = 1.0)"
},
"schema": {
"name": "XDM ExperienceEvent"
},
"labels": [
"core/C1"
]
}
This body gives me an error
* code: "NEBULA-000000-400",
* message: "There is a problem with the input value. Please check your request and try again."
Any idea what's wrong? Also tried a "==" in the condition with the same result.

