My API returns the response in following format:
[
[
"Time",
"Attempts",
"Successes",
"Failures",
"BookabilityRatio"
],
[
"2022-07-30",
995935,
734009,
61926,
73.70
],
[
"2022-07-31",
949576,
683740,
265836,
72.00
]
]
It's a list or list or array or array where each element has a different data type. How to create an OpenAPI schema for this response?