Overview
The Rock Solid Knowledge SCIM component for ASP.NET Core allows you to enable your web applications to act as a SCIM Service Provider.
Service Provider Functionality
The service provider functionality includes:
- Validating SCIM Requests - ensuring requests adhere to requirements from the protocol specification
- Validating SCIM Resources - ensuring resources adhere to properties defined in the core schema specification
- Storing SCIM Resources - persisting resources in a custom store or provided solutions
The sections of the protocol specification that are available in this library are:
- Read requests - through the use of the GET verb
- Create requests - through the use of the POST verb
- Full update requests - through the use of the PUT verb
- Partial update requests - through the use of the PATCH verb
- Remove requests - through the use of the DELETE verb
The SCIM component implements parts of the core schema specification through an attributing system. The attributes that are covered by the attributing system are:
- Required - including in which context a property is required (e.g., Create, Update)
- Mutability - including when the mutability rule applies (e.g., read-only, immutable)
- Returned - including when the property is returned (e.g., never)
- Uniqueness
For more information and to get started, please see our introduction.
Links
To learn more about SCIM, please use the following resources:
Previous
Next