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.

Features

  • SCIM Resources: Native Python classes for User, Group, EnterpriseUser, ServiceProviderConfig, ResourceType and Schema
  • Pydantic Integration: Full Pydantic v2 support with validation, serialization and IDE autocompletion
  • RFC Compliance: Implements RFC7643 (schema) and RFC7644 (protocol) specifications
  • Attribute Metadata: Support for Mutability, Returned, Uniqueness and Required field annotations
  • Context-Aware Validation: Automatic field inclusion/exclusion based on HTTP context (creation, query, replacement, etc.)
  • Schema Extensions: Dynamic schema extensions and custom resource types, dynamic conversion between schemas and Python models.
  • SCIM Messages: ListResponse, SearchRequest, PatchOp, and Error messages
  • Error Handling: SCIM-compliant exceptions with automatic conversion to Error responses

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.6.5.tar.gz (45.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

scim2_models-0.6.5-py3-none-any.whl (57.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: scim2_models-0.6.5.tar.gz
  • Upload date:
  • Size: 45.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for scim2_models-0.6.5.tar.gz
Algorithm Hash digest
SHA256 23ac1b7a0ba0d6fb78c7235f45baa628248fa0ec6ef47dd27d9164e79092142d
MD5 f18f2559b1a6d98c2d0a2554758a6109
BLAKE2b-256 3662b439b5c7b8cfe4de5bdf7a7829972bea3f00bdb419a6e1a23ab0c8d7e41f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scim2_models-0.6.5.tar.gz:

Publisher: release.yml on python-scim/scim2-models

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: scim2_models-0.6.5-py3-none-any.whl
  • Upload date:
  • Size: 57.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for scim2_models-0.6.5-py3-none-any.whl
Algorithm Hash digest
SHA256 7e293a506f6639cf9ad4ac9b0f8e29f04fdc3052fc09021ca3ee0b526055f7bf
MD5 705811b80f9eaee512e7788ff145040f
BLAKE2b-256 3662a4a0245e0ccc4aa000b598442af1bfec7cbd760b5c49e6648080791f42e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scim2_models-0.6.5-py3-none-any.whl:

Publisher: release.yml on python-scim/scim2-models

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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