View Source SCIM.V2.Filter.And (scim v0.0.1)
Boolean and for combining conditions and nested filters
e.g. occupation must be carpenter and city must not be Naha
%And{
value: [
%Condition{
path: %Path{attribute: "occupation"},
op: :eq,
value: %Value{type: :string, value: "carpenter"},
},
%Not{
value: %Condition{
path: %Path{attribute: "city"},
op: :eq,
value: %Value{type: :string, value: "Naha"},
}
}
]}