elimity-com / scim

Golang Implementation of the SCIM v2 Specification
MIT License
177 stars 55 forks source link

Use json.Number to decode patch operations #164

Closed maraino closed 7 months ago

maraino commented 9 months ago

Description

This commit fixes the decoding of integer attributes in patches. Without this change, integer attributes are decoded as float64, causing a schema validation error.

maraino commented 9 months ago

The PR https://github.com/elimity-com/scim/pull/165 is built on top of this one.