skillfed

pydantic-scim

Pydantic types for SCIM

pydantic-scim v0.0.8 185.3K downloads/30d#10,012 on PyPI
License unclear DORMANT released

What it is and what it does

pydantic-scim wraps SCIM protocol data structures as Pydantic models, generated from official SCIM schema files and refined by hand. It lets you validate and work with identity management objects—users, groups, and related entities—using Pydantic's validation and serialization machinery.

The package is a thin schema layer: it depends only on pydantic and provides type definitions for SCIM entities. It is dormant, with no activity since its latest release, so it will not receive updates for new pydantic releases or SCIM specification changes. Use it when you need to parse or validate SCIM data in a Python application and your pydantic version is compatible with the package's expectations.

Use it for:

  • Validate incoming SCIM API requests in an identity provider or directory service
  • Serialize Python objects to SCIM-compliant JSON for outbound identity sync
  • Parse SCIM responses from a third-party identity management system
  • Build a SCIM-compatible REST endpoint with type-safe request/response models

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides Pydantic data models for SCIM (System for Cross-domain Identity Management) protocol types, enabling validation and serialization of identity management data structures.

Yes, if you need SCIM schema validation and your environment supports Python 3.8 or later with a compatible pydantic version. The low install friction and lack of vulnerabilities make it safe to add. However, the dormant status and unclear license mean you should verify license compatibility upfront and test pydantic version compatibility before relying on it in production.

Install

pydantic-scim on PyPI

pip

pip install pydantic-scim

uv

uv add pydantic-scim

poetry

poetry add pydantic-scim

Installing pydantic-scim

Before you install

Low install friction with a single dependency on pydantic. The package is dormant—no activity recorded since its latest release—which means bug fixes or compatibility updates are unlikely.

License in practice

License status is unclear; no SPDX identifier or raw license text is available. Verify the actual license terms before using in a project with specific licensing requirements.

Quickstart

pip install pydantic-scim

from pydantic_scim import User

user = User(userName="john.doe", displayName="John Doe")

Requires Python 3.8 or later. SCIM schema knowledge is assumed; the package provides type definitions but not protocol documentation.

Verify before relying

  • Which SCIM specification version(s) the models conform to
  • Whether the models cover the full SCIM schema or a subset
  • Current compatibility with recent pydantic versions (v2.x)

Package facts

License not declared (unclear)
Python support supports the current Python release (>=3.8.0)
Install friction low — pure-Python wheel
Runtime dependencies 1 — pydantic
Maintenance dormant — 1,023 days since the last release
First released
Downloads 185,315/month — #10,012 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pydantic_scim-0.0.8-py3-none-any.whl

Programming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.8

Tags

pydantic scim modelsscim identity managementscim data validationcross-domain identity protocolscim schema typesidentity management validation
identity-managementscim-protocol

More Internet packages