We can parse the JSON and filter the dictionary part of response to convert to a tabular format and display it as separate chunk to customer.
# Sample dictionary
import pandas as pd
data = {
"Impact": "Medium",
"Form Status": "Submitted",
.....
}
# Convert dictionary to DataFrame
df = pd.DataFrame([data])
# Display the DataFrame
print(df)
Thank you.