Hi,
I am working on creating API documentation for SCIM v2 protocol.
In my API definition, I am using objects similar to:
{
“schemas”: [
“urn:ietf:params:scim:api:messages:2.0:PatchOp”
],
“Operations”: [
{
“op”: “add”,
“path”: “members”,
“value”: [
{
“display”: “Babs Jensen”,
“$ref”: “https://example.com/v2/Users/2819c223...413861904646”,
“value”: “2819c223-7f76-453a-919d-413861904646”
}
]
}
]
}
This is the structure defined by RFC7644 (https://tools.ietf.org/html/rfc7644) and I am getting a RESOLVE_AUTHORITY error for the attribute “$ref”.
Please advice what should I do to resolve these errors
Thank you