Closed mnahkies closed 1 month ago
The SCIM v2 RFC includes a property named $ref on group membership, etc
$ref
Eg: https://datatracker.ietf.org/doc/html/rfc7643
{ "name" : "$ref", "type" : "reference", "referenceTypes" : [ "User", "Group" ], "multiValued" : false, "description" : "The URI of the corresponding 'Group' resource to which the user belongs.", "required" : false, "caseExact" : false, "mutability" : "readOnly", "returned" : "default", "uniqueness" : "none" },
Previously we were naively trying to resolve any $ref key we found as an OpenAPI reference
Now we still naively do this, but only if it quacks like a real $ref
The SCIM v2 RFC includes a property named
$ref
on group membership, etcEg: https://datatracker.ietf.org/doc/html/rfc7643
Previously we were naively trying to resolve any
$ref
key we found as an OpenAPI referenceNow we still naively do this, but only if it quacks like a real
$ref