@hackage hscim0.4.0.2

hscim json schema and server implementation

System for Cross-domain Identity Management (SCIM)

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

  • User schema version 2.0

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.