-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Closed
Description
Swagger UI version: commit a1ce0e7 (ft/oas3 branch)
Looks like it's not currently possible to edit the request body when trying out a particular operation:
Spec:
{
"openapi": "3.0.0",
"info": {
"title": "Test",
"version": "1.0.0"
},
"paths": {
"/test": {
"post": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"prop": {
"type": "string"
}
}
}
}
}
},
"responses": {
"default": {
"description": "A response"
}
}
}
}
}
}
