Skip to main content

Crate scim_rs

Crate scim_rs 

Source
Expand description

Small SCIM 2.0 building blocks.

This crate is intentionally minimal while the public API takes shape.

use scim_rs::{ResourceKind, CORE_USER_SCHEMA};

assert_eq!(ResourceKind::User.schema_urn(), CORE_USER_SCHEMA);
assert_eq!(ResourceKind::Group.endpoint(), "/Groups");

Enums§

ResourceKind
Built-in SCIM resource kinds defined by RFC 7643 and RFC 7644.

Constants§

CORE_GROUP_SCHEMA
SCIM 2.0 core Group schema URN.
CORE_USER_SCHEMA
SCIM 2.0 core User schema URN.
ENTERPRISE_USER_SCHEMA
SCIM 2.0 Enterprise User extension schema URN.