Example
The Sample button loads a small specification chosen for this operation. Running it produces the same structured fields shown in the output panel.
{
"openapi": "3.0.3",
"info": {
"title": "Users",
"version": "1"
},
"paths": {
"/users": {
"post": {
"operationId": "createUser",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"email": {
"type": "string",
"example": "dev@example.com"
},
"role": {
"type": "string",
"enum": [
"admin",
"member"
]
…