RapiPdf icon indicating copy to clipboard operation
RapiPdf copied to clipboard

Add response headers

Open Yavari opened this issue 4 years ago • 0 comments

Would it be possible to show the response header in the same way as request headers are shown. One example from my generated json is:

        "responses": {
          "200": {
            "description": "OK",
            "headers": {
              "checksum": {
                "description": "Validate package",
                "schema": {
                  "type": "String"
                }
              }
            },
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CreatePackageResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized"
          },
          "400": {
            "description": "Bad Request"
          }
        }

Yavari avatar Feb 12 '21 06:02 Yavari