First post here.
I have simple OpenAPI3 yaml file.
https://app.swaggerhub.com/apis/markotitel/test/1.0.0
When I import it to Postman some of my request body properties are missing in postman.
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- domainName
- callbackUrl
properties:
callbackUrl:
type: string
format: url
example: https://server.com/api/callback/1
description: http request will be sent to callback url to notify successfull job.
domainName:
type: string
example: swagger.io
If I remove format: url
then the property is present in Postman. That is not big issue though.
But to do further testing I’ve removed required
attribute callbackUrl
but still can see it in Postman.
Any hints?