Dmitrii Prisacari

Results 18 comments of Dmitrii Prisacari

Confirming issue. Got the same error just after fresh install from sources according to wiki page. Here's the output: ``` $ git clone https://github.com/JPaulMora/Pyrit.git Cloning into 'Pyrit'... remote: Enumerating objects:...

For those who have difficulties with filters in the patch, here's a working example. 1. Set up a simple user schema with a multi-values `emails` attribute: ```golang userSchema := schema.Schema{...

@suqin-haha Perhaps you are looking for the [jsonpatch](https://pkg.go.dev/github.com/evanphx/json-patch/v5) package + after applying the patch you can validate the resulting structure against schema using [Schema.Validate()](https://github.com/elimity-com/scim/blob/master/schema/schema.go#L70) function.

Maybe something is wrong with the way you send the requests to the app. I've just started to use this library and the attributes are present for me.

@aunefyren I just tested your payload and it worked with this code: ```golang package main import ( "fmt" "log" "net/http" // ... ) func main() { config := scim.ServiceProviderConfig{ DocumentationURI:...

Looks like the `rm` command is the best option: ``` sudo rm -rf /usr/share/setoolkit /etc/setoolkit /usr/local/bin/setoolkit ```

I see the same issue using the latest stable version as of this moment. If you use the schema from the official docs, [Identity schema extensions](https://www.ory.sh/docs/kratos/manage-identities/customize-identity-schema#identity-schema-extensions) section, Kratos fails to...

This error happens because the Ory identity extension schema [does not support](https://github.com/ory/kratos/blob/df2f186fe23e3d036c040d8fc528b2acdf37cf4e/embedx/identity_extension.schema.json#L82) the "sms" recovery method. If you remove the `"recovery": { "via": "sms" }` from your schema definition, or...