feat(scim): serve the User ResourceType and Schema - #2672
Draft
xlgmokha wants to merge 3 commits into
Draft
Conversation
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 4, 2026 15:34
e1f65d0 to
3e3c7be
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 4, 2026 16:18
3e3c7be to
66ff48a
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 4, 2026 16:43
66ff48a to
3e3c7be
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 4, 2026 16:46
3e3c7be to
222bfc2
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
3 times, most recently
from
August 4, 2026 17:27
f8667bd to
e838c14
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 4, 2026 19:52
e838c14 to
c96851e
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 4, 2026 20:06
c96851e to
c62dbda
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 6, 2026 15:34
9b3f318 to
6840bb3
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 6, 2026 18:41
6840bb3 to
fdcd0c7
Compare
xlgmokha
force-pushed
the
xlgmokha/auth-1369
branch
from
August 6, 2026 19:47
fdcd0c7 to
02a5a61
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. Adds
GET /scim/v2/ResourceTypes/{id}andGET /scim/v2/Schemas/{id}.https://linear.app/supabase/issue/AUTH-1369/scim-user-resourcetype-and-schema-reflection-endpoints
What is the current behavior?
/ResourceTypesand/Schemasreturn an emptyListResponseand have no by-id route, so nothing on this server describes the User resource.A conformant client discovers before it fetches, which makes
/Users/{id}unreachable in practice.The User resource itself publishes
userNameandemails.What is the new behavior?
GET /ResourceTypes200+ListResponsewith oneResourceTypeGET /ResourceTypes/User200+ theResourceTypeGET /Schemas200+ListResponsewith oneSchemaGET /Schemas/urn:ietf:params:scim:schemas:core:2.0:User200+ theSchemaAdditional context