1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| {
"status": "OK",
"data": {
"questions_and_answers": [
{
"question": "Do you have outdoor seating?",
"question_author": "Sarah M.",
"question_time": "2025-06-10T09:30:00Z",
"answers": [
{
"text": "Yes, we have a lovely patio area with seating for up to 20 guests.",
"author": "Joe's Coffee (Owner)",
"time": "2025-06-10T14:00:00Z"
}
]
},
{
"question": "Is there free Wi-Fi available?",
"question_author": "Tom K.",
"question_time": "2025-04-22T16:45:00Z",
"answers": [
{
"text": "Yes! Free Wi-Fi is available for all customers. Ask the barista for the password.",
"author": "Joe's Coffee (Owner)",
"time": "2025-04-23T08:15:00Z"
},
{
"text": "Yes, they do. It's pretty fast too.",
"author": "Regular Customer",
"time": "2025-04-24T11:00:00Z"
}
]
}
]
}
}
|