View Source SCIM.V2.Filter.Path (scim v0.0.1)

Describes how to reach an attribute

Meant to be used as value of a PathExpression or within the path of an AttributeRequirementExpression.

e.g. the displayName of members whose name start with "foo":

%Path{

attribute: "members",
subattribute: "displayName",
filter: %Filter{
  value: %Condition{
    path: %Path{attribute: "name"},
    op: :sw,
    value: %Value{type: :string, value: "foo"},
  },
}

}