Skip to main content

SCIM2 models serialization and validation with pydantic

Project description

scim2-models

Pydantic models for SCIM schemas defined in RFC7643 and RFC7644.

This library provides utilities to parse and produce SCIM2 payloads, and handle them with native Python objects. It aims to be used as a basis to build SCIM2 servers and clients.

What's SCIM anyway?

SCIM stands for System for Cross-domain Identity Management, and it is a provisioning protocol. Provisioning is the action of managing a set of resources across different services, usually users and groups. SCIM is often used between Identity Providers and applications in completion of standards like OAuth2 and OpenID Connect. It allows users and groups creations, modifications and deletions to be synchronized between applications.

Installation

pip install scim2-models

Usage

Check the tutorial and the reference for more details.

from scim2_models import User
import datetime

payload = {
    "schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
    "id": "2819c223-7f76-453a-919d-413861904646",
    "userName": "bjensen@example.com",
    "meta": {
        "resourceType": "User",
        "created": "2010-01-23T04:56:22Z",
        "lastModified": "2011-05-13T04:42:34Z",
        "version": 'W\\/"3694e05e9dff590"',
        "location": "https://example.com/v2/Users/2819c223-7f76-453a-919d-413861904646",
    },
}

user = User.model_validate(payload)
assert user.user_name == "bjensen@example.com"
assert user.meta.created == datetime.datetime(
    2010, 1, 23, 4, 56, 22, tzinfo=datetime.timezone.utc
)

scim2-models belongs in a collection of SCIM tools developed by Yaal Coop, with scim2-client, scim2-tester and scim2-cli

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scim2_models-0.1.13.tar.gz (28.0 kB view details)

Uploaded Source

Built Distribution

scim2_models-0.1.13-py3-none-any.whl (34.6 kB view details)

Uploaded Python 3

File details

Details for the file scim2_models-0.1.13.tar.gz.

File metadata

  • Download URL: scim2_models-0.1.13.tar.gz
  • Upload date:
  • Size: 28.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.9.9-arch1-1

File hashes

Hashes for scim2_models-0.1.13.tar.gz
Algorithm Hash digest
SHA256 cbf231b1ccbe730f74b934766ba7474a596c97dfa97aa4f4910cd99b12a74626
MD5 29282d3c62de028436660edc85e8701f
BLAKE2b-256 055140960e433b31c64505b9da6857b5b7663d52229a86eb5c711e6faf82c434

See more details on using hashes here.

File details

Details for the file scim2_models-0.1.13-py3-none-any.whl.

File metadata

  • Download URL: scim2_models-0.1.13-py3-none-any.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.9.9-arch1-1

File hashes

Hashes for scim2_models-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 81b31355a9211c2c062265e7e5780ef6b50767a3a0c83592998f2b2e6fde442d
MD5 78ac5b5a494977b5002c33fd21b41d83
BLAKE2b-256 9c15e5a055c1ac293c38eae2f7c0a02621cfd8fa339d0e7ef93d50e8a8ad2950

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page