feat(scim): implement /scim/v2/ServiceProviderConfig - #2662
Open
xlgmokha wants to merge 1 commit into
Open
Conversation
/scim/v2/ServiceProviderConfig
xlgmokha
marked this pull request as ready for review
July 30, 2026 23:17
Add a core package for the SCIM 2.0 core schema of RFC 7643 and use it to answer `GET /scim/v2/ServiceProviderConfig` with a real document instead of a 501. The response reports every attribute RFC 7643, Section 5 marks as required, each declaring no support, since none of patch, bulk, filter, changePassword, sort, or etag is implemented.
xlgmokha
force-pushed
the
xlgmokha/auth-1362d
branch
from
July 30, 2026 23:26
37af5c7 to
e82b9b0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
Feature.
GET /scim/v2/ServiceProviderConfigreturns a real RFC-7643 document.Extracted from #2643
What is the current behavior?
All three discovery endpoints return 501 in the RFC-7644 error form.
Nothing describes what this server supports, so a SCIM client has no way to discover its capabilities.
What is the new behavior?
A new
scim/corepackage holds the SCIM 2.0 core schema types from RFC-7643.The
/ServiceProviderConfigendpoint reports every attribute RFC-7643 marks asREQUIRED. Each capability is set tosupported: false.authenticationSchemesadvertises the OAuth bearer token scheme. A later PR will enforce it.Additional context