hscim: hscim json schema and server implementation

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

The README file will answer all the questions you might have


[Skip to Readme]

Properties

Versions 0.3.4, 0.3.5, 0.3.6, 0.4.0, 0.4.0.1, 0.4.0.2, 0.4.0.3, 0.4.0.3, 0.4.0.4
Change log CHANGELOG
Dependencies aeson (>=2.1.2 && <2.2), aeson-qq (>=0.8.4 && <0.9), attoparsec (>=0.14.4 && <0.15), base (>=4.17.2 && <4.19), bytestring (>=0.10.4 && <0.12), case-insensitive (>=1.2.1 && <1.3), email-validate (>=2.3.2 && <2.4), hashable (>=1.4.3 && <1.5), hscim, hspec (>=2.10.10 && <2.12), hspec-expectations (>=0.8.2 && <0.9), hspec-wai (>=0.11.1 && <0.12), http-api-data (>=0.5 && <0.6), http-media (>=0.8.1 && <0.9), http-types (>=0.12.3 && <0.13), list-t (>=1.0.5 && <1.1), microlens (>=0.4.13 && <0.5), mmorph (>=1.2.0 && <1.3), mtl (>=2.2.2 && <2.4), network-uri (>=2.6.4 && <2.7), retry (>=0.9.3 && <0.10), scientific (>=0.3.7 && <0.4), servant (>=0.19.1 && <0.21), servant-client (>=0.19 && <0.21), servant-client-core (>=0.19 && <0.21), servant-server (>=0.19.2 && <0.21), stm (>=2.5.1 && <2.6), stm-containers (>=1.2.0 && <1.3), string-conversions (>=0.4.0 && <0.5), template-haskell (>=2.19.0 && <2.21), text (>=2.0.2 && <2.1), time (>=1.12.2 && <1.13), uuid (>=1.3.15 && <1.4), wai (>=3.2.3 && <3.3), wai-extra (>=3.1.13 && <3.2), warp (<=3.4.2) [details]
License AGPL-3.0-only
Copyright (c) 2018 Wire Swiss GmbH
Author Wire Swiss GmbH
Maintainer Wire Swiss GmbH <backend@wire.com>
Category Web
Home page https://github.com/wireapp/wire-server/libs/hscim/README.md
Bug tracker https://github.com/wireapp/wire-server/issues
Source repo head: git clone https://github.com/wireapp/wire-server(hscim)
Uploaded by MatthiasFischmann at 2024-11-22T09:55:06Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for hscim-0.4.0.3

[back to package description]

System for Cross-domain Identity Management (SCIM)

This implements part of the SCIM standard for identity management. The parts that are currently supported are:

Building

This project uses stack. You can install the sample executable with

stack install

Developing and testing

This library only implements the schemas and endpoints defined by the SCIM standard. You will need to implement the actual storage by giving an instance for the Persistence class.

There's a simple in-memory implementation of this class, which is used for tests. You can run the tests with the standard stack interface:

stack test

Contributing

Before submitting a PR, make sure to install ormolu by doing stack install ormolu (we pin the version in our stack.yaml file) and run make format.