If I have data that looks like this:
{
"source": {
"id": "someStr",
"type": "someTypeStr",
"someObj": {
"objId": "someStr",
"numField": 2
}
},
"destination": {
"id": "someStr",
"type": "someTypeStr",
"someObj": {
"objId": "someStr",
"numField": 2
}
}
}
Filtering works fine when we want to filter someting like source.id PR
or destination.type co "something"
. However, I'm not sure what the proper scim way is to filter on the "someObj" field within? I can't seem to find anything in the spec about this, is there a accepted way to represent a filter like source.someObj.numField eq 2
?