Looking for some help, I’m a complete beginner to this
So I have specific business profiles i would like to store and have an agent do Q&A on the businesses.
What’s a good approach here?
How should I store this payload with multitenancy in mind?
Any input is greatly appreciated! thanks!
[
{
"id": "businessId1",
"name": "Business Name 1",
"description": "Short description of Business 1.",
"contact": {
"phone": "Contact Phone 1",
"email": "Contact Email 1",
"website": "Contact Website 1"
},
"locations": [
{
"id": "locationId1",
"address": "Location Address 1",
"services": [
{
"id": "serviceId1",
"name": "Service Name 1",
"description": "Short description of Service 1.",
"pricing": [
{ "price": 1500, "currency": "THB", "duration": 60 }
]
}
]
}
]
},
{
"id": "businessId2",
"name": "Business Name 2",
"description": "Short description of Business 2.",
"contact": {
"phone": "Contact Phone 2",
"email": "Contact Email 2",
"website": "Contact Website 2"
},
"locations": [
{
"id": "locationId2",
"address": "Location Address 2",
"services": [
{
"id": "serviceId2",
"name": "Service Name 2",
"description": "Short description of Service 2.",
"pricing": [
{ "price": 1300, "currency": "THB", "duration": 60 }
]
}
]
}
]
}
]```