### Expected Behaviour `response.json` should be correctly formatted at https://awslabs.github.io/aws-lambda-powertools-python/latest/core/event_handler/api_gateway/#fine-grained-responses ### Current Behaviour Selecting `response.json` looks like this <img width="1079" alt="Screen Shot 2022-05-20 at 1 10 32 PM" src="https://user-images.githubusercontent.com/5442469/169604221-1fecadde-fe60-46ba-8267-f533678af7e2.png"> ### Code snippet ``` { "body": "{\"message\":\"I\'m a teapot\"}", "headers": { "Content-Type": "application/json", "X-Custom": "X-Value" }, "isBase64Encoded": false, "statusCode": 418 } ``` ### Possible Solution ``` === "response.json" ```json { "statusCode": 200, "headers": { "Content-Type": "application/json" }, "body": "{\"message\":\"hello universe\"}", "isBase64Encoded": false } ``` ``` Correctly format like PR #1117 and example deployed here https://gyft.github.io/aws-lambda-powertools-python/latest/core/event_handler/api_gateway/#fine-grained-responses See screenshot of fix <img width="1087" alt="Screen Shot 2022-05-20 at 1 16 52 PM" src="https://user-images.githubusercontent.com/5442469/169604423-84f0c342-61bd-4d00-825a-af8265b8ba52.png"> ### Steps to Reproduce 1. Go to https://awslabs.github.io/aws-lambda-powertools-python/latest/core/event_handler/api_gateway/#fine-grained-responses 2. Select `response.json` ### AWS Lambda Powertools for Python version latest ### AWS Lambda function runtime 3.9 ### Packaging format used PyPi ### Debugging logs ```python N/A ```