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
{{ message }}
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
The is specific scenario when request body validation fails when properties are named with capital letters. I assume it should accept only json with capital letter property but accepts as follows:
capital letter property
lower case property
capital and lower case property in the same request
Example:
For endpoint parameters: - in: body name: body schema: $ref: '#/definitions/MyRequest'
The is specific scenario when request body validation fails when properties are named with capital letters. I assume it should accept only json with capital letter property but accepts as follows:
Example:
For endpoint
parameters: - in: body name: body schema: $ref: '#/definitions/MyRequest'
With definition
definitions: MyRequest: type: object properties: IBAN: type: string required: - IBAN
It accepts following jsons:
{ "IBAN": "1234567889" }
{ "iban": "1234567889" }
{ "iban": "1234567889", "IBAN": "1234567889" }
Acceptance criteria:
{ "IBAN": "1234567889" }
The text was updated successfully, but these errors were encountered: