Skip to content

Commit 0cae003

Browse files
authored
Merge pull request #2943 from dbluhm/fix/interop/overly-strict-validation
fix(interop): overly strict validation
2 parents 339cfe5 + dc4cab3 commit 0cae003

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

aries_cloudagent/protocols/present_proof/dif/pres_exch.py

-2
Original file line numberDiff line numberDiff line change
@@ -824,12 +824,10 @@ class Meta:
824824

825825
id = fields.Str(
826826
required=False,
827-
validate=UUID4_VALIDATE,
828827
metadata={"description": "ID", "example": UUID4_EXAMPLE},
829828
)
830829
definition_id = fields.Str(
831830
required=False,
832-
validate=UUID4_VALIDATE,
833831
metadata={"description": "DefinitionID", "example": UUID4_EXAMPLE},
834832
)
835833
descriptor_maps = fields.List(

aries_cloudagent/protocols/present_proof/v2_0/formats/dif/handler.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from typing import Mapping, Optional, Sequence, Tuple
66
from uuid import uuid4
77

8-
from marshmallow import RAISE
98

109
from ......messaging.base_handler import BaseResponder
1110
from ......messaging.decorators.attach_decorator import AttachDecorator
@@ -75,7 +74,7 @@ def validate_fields(cls, message_type: str, attachment_data: Mapping):
7574
Schema = mapping[message_type]
7675

7776
# Validate, throw if not valid
78-
Schema(unknown=RAISE).load(attachment_data)
77+
Schema().load(attachment_data)
7978

8079
def get_format_identifier(self, message_type: str) -> str:
8180
"""Get attachment format identifier for format and message combination.

aries_cloudagent/vc/vc_ld/models/linked_data_proof.py

-3
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,6 @@ class Meta:
105105

106106
domain = fields.Str(
107107
required=False,
108-
# TODO the domain can be more than a Uri, provide a less restrictive validation
109-
# https://www.w3.org/TR/vc-data-integrity/#defn-domain
110-
validate=Uri(),
111108
metadata={
112109
"description": (
113110
"A string value specifying the restricted domain of the signature."

0 commit comments

Comments
 (0)