Is there a way to ignore properties with null values in when matching null request?
Request was not matched
=======================
-----------------------------------------------------------------------------------------------------------------------
| Closest stub | Request |
-----------------------------------------------------------------------------------------------------------------------
|
POST | POST
/person/ | /person/
|
{ | { <<<<< Body does not match
"name" : { | "name" : {
"family-name" : "Smith", | "family-name" : "Smith"
"given-name" : null | }
} | }
} |
|
-----------------------------------------------------------------------------------------------------------------------