I have a problem .
I created openApi request and I want to send to request not empty body
/test
  post:
   .
   .
   .
   requestBody:
     required:true
TestRequest
  type: object
  required:
    - testName
  properties:
    testName:
    type: string
    description: Test
I can send a request empty body like { } on postman.
How can i solve this problem .
 
    