scim_v2 0.4.0

A crate that provides utilities for working with the System for Cross-domain Identity Management (SCIM) version 2.0 protocol. (rfc7642, rfc7643, rfc7644)
Documentation
{
  "schemas":
  ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
  "Operations": [
    {
      "op":"remove","path":"members"
    },
    {
      "op":"add",
      "path":"members",
      "value":[
        {
          "display": "Babs Jensen",
          "$ref":
          "https://example.com/v2/Users/2819c223...413861904646",
          "value": "2819c223-7f76-453a-919d-413861904646"
        },
        {
          "display": "James Smith",
          "$ref":
          "https://example.com/v2/Users/08e1d05d...473d93df9210",
          "value": "08e1d05d-121c-4561-8b96-473d93df9210"
        }]
    }
  ]
}