diff --git a/pkg/restapi/v1/issuer/controller.go b/pkg/restapi/v1/issuer/controller.go index 0586b6bca..3e63ee65f 100644 --- a/pkg/restapi/v1/issuer/controller.go +++ b/pkg/restapi/v1/issuer/controller.go @@ -1208,7 +1208,6 @@ func (c *Controller) validateJSONLD( return validator.ValidateJSONLDMap(data, validator.WithDocumentLoader(c.documentLoader), validator.WithStrictValidation(true), - validator.WithJSONLDIncludeDetailedStructureDiffOnError(), ) } diff --git a/pkg/service/verifypresentation/verifypresentation_service.go b/pkg/service/verifypresentation/verifypresentation_service.go index b49be4b6d..310252173 100644 --- a/pkg/service/verifypresentation/verifypresentation_service.go +++ b/pkg/service/verifypresentation/verifypresentation_service.go @@ -218,7 +218,6 @@ func (s *Service) checkCredentialStrict( if err = validator.ValidateJSONLDMap(credMap, validator.WithDocumentLoader(s.documentLoader), validator.WithStrictValidation(true), - validator.WithJSONLDIncludeDetailedStructureDiffOnError(), ); err != nil { return claimKeysDict, err }