validate json request
deref yaml & dl as json schema
OpenAPI YAML Schema
openapi: 3.0.0 info: title: Example version: 0.0.1 paths: /add/users: post: requestBody: content: application/json: schema: type: object additionalProperties: false required: - username properties: username: type: string responses: '200': description: OK
Json Request/Response
{ "method": "POST", "path": "/add/users", "body": { "username": "max" } }