Filtering

You can filter results by using the property parameter, which is used to apply a specific operator against a given JSON property within the retrieved resources. Supported operators include:

OperatorDescriptionExample
==Filters by whether the property equals the provided value.property=title==test
!=Filters by whether the property does not equal the provided value.property=title!=test
<Filters by whether the property is less than the provided value.property=version<5
>Filters by whether the property is greater than the provided value.property=version>5
<=Filters by whether the property is less than or equal to the provided value.property=version<=5
>=Filters by whether the property is greater than or equal to the provided value.property=version>=5
(None)Stating only the property name returns only entries where the property exists.property=title
TIP
You can use the property parameter to filter schema field groups by their compatible class. For example, property=meta:intendedToExtend==https://ns.adobe.com/xdm/context/profile returns only field groups that are compatible with the XDM Individual Profile class.

Compatibility Mode

Experience Data Model (XDM) is a publicly documented specification, driven by Adobe to improve the interoperability, expressiveness, and power of digital experiences. Adobe maintains the source code and formal XDM definitions in an open source project on GitHub. These definitions are written in XDM Standard Notation, using JSON-LD (JavaScript Object Notation for Linked Data) and JSON Schema as the grammar for defining XDM schemas.

When looking at formal XDM definitions in the public repository, you can see that standard XDM differs from what you see in Adobe Experience Platform. What you are seeing in Experience Platform is called Compatibility Mode, and it provides a simple mapping between standard XDM and the way it is used within Experience Platform.