Convert to JSON
Save + View
openapi: "3.0.0" info: version: 1.0.0 title: Headers Casing license: name: MIT servers: - url: http://httpbin.org/ paths: /get: get: parameters: - name: Accept in: header required: false schema: type: string default: this header should be title cased - name: CAPITALIZED in: header required: false schema: type: string default: this header should be title cased responses: '200': description: Expected response to a valid request
Explore