While implementing 1.37-5 i found this.
if i validate QUEUED_MESSAGE with the Schema of 1.0.0
it prompt me an Exception, because the Enum "different_pid" is not specified in the Schema.
Currently in the Schem its defined like:
Code:
"enum": [
"get_request",
"get_response",
"set_request",
"set_response"
]
but should be
Code:
"enum": [
"get_request",
"get_response",
"set_request",
"set_response",
"different_pid"
]