Release Notes > Swagger API changes since 20.11-LTS > Swagger API changes - 21.09 > Unknown properties are rejected in JSON payload
Unknown properties are rejected in JSON payload
From 21.09 Codebeamer will reject the unknown properties in any Swagger communication model.
For Example this will be rejected:
{
"id": 1091
"name": "Optimize routing algorithm1"
"foo": "bar",
"descriptionFormat": "Wiki"
...
}
with the following HTTP 400 - Bad request error message:
{
"message": "JSON parse error: Unrecognized field \"foo\"
}
Was this helpful?