You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The client SDK seem to incorrectly interprete section 2.5 of the core standard, which states:
When a resource is expressed in
JSON format, unassigned attributes, although they are defined in
schema, MAY be omitted for compactness.
This "MAY" expresses according to RFC2119 that the server implementation is allowed to either omit the attribute or to send an empty value.
However, when talking to servers which return empty attributes, e.g. empty "display" attributes, we get the infamous UnrecognizedPropertyException exception.
The text was updated successfully, but these errors were encountered:
@wwebers, can you please provide an example of the problem? Without further information, it seems more likely that you're deserializing with a POJO that doesn't support a "display" field, hence the UnrecognizedPropertyException.
The client SDK seem to incorrectly interprete section 2.5 of the core standard, which states:
This "MAY" expresses according to RFC2119 that the server implementation is allowed to either omit the attribute or to send an empty value.
However, when talking to servers which return empty attributes, e.g. empty "display" attributes, we get the infamous UnrecognizedPropertyException exception.
The text was updated successfully, but these errors were encountered: