Skip to content

Commit 1064f62

Browse files
committed
updates
1 parent 723163f commit 1064f62

File tree

3 files changed

+24
-115
lines changed

3 files changed

+24
-115
lines changed

site/.vitepress/config.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,24 @@ export default defineConfig({
3838
},
3939
nav: [
4040
{ text: 'About', link: '/about/' },
41-
{ text: 'Documentation', link: '/docs/' },
41+
{
42+
text: 'Documentation',
43+
link: '/docs/'
44+
45+
},
4246
{ text: 'Docker', link: '/docker/' },
4347
{ text: 'SCIM Playground', link: 'https://scim.dev', target: '_blank', rel: 'noopener' }
4448
],
49+
sidebar:
50+
{
51+
'/docs/': {
52+
text: 'Documentation',
53+
items: [
54+
{ text: 'Limitations of SCIM', link: '/docs/limitations' },
55+
]
56+
}
57+
58+
}
4559
},
4660
markdown: {
4761

site/docker.md

Lines changed: 0 additions & 114 deletions
This file was deleted.

site/docs/limitations.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Limitations in SCIM Discovery
2+
3+
## Schema Discovery Constraints
4+
5+
SCIM's `/Schemas` and `/ResourceTypes` endpoints provide detailed structural information about the data model. However, SCIM does not provide a mechanism to discover all information required for automated integrations and, in consequence, automated tested.
6+
7+
- No discovery mechanism for what operation are allowed per resource type (GET, POST, PATCH etc)
8+
- No validation rules for attribute values (permitted formats, ranges, or enumerations)
9+
- No discovery mechanism for required vs optional attributes in specific operations.

0 commit comments

Comments
 (0)