| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "openapi": "3.0.0",
- "info": {
- "title": "Example for response examples value",
- "version": "1.0"
- },
- "paths": {
- "/users": {
- "post": {
- "summary": "Adds a new user",
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "properties": {
- "id": {
- "type": "string"
- },
- "name": {
- "type": "string"
- }
- },
- "type": "object",
- "example": {
- "id": 10,
- "name": "Jessica Smith"
- }
- }
- }
- }
- },
- "responses": {
- "200": {
- "description": "OK"
- }
- }
- }
- }
- }
- }
|