To make the Access-bot work properly we need to persist information provided by a customer and use it to generate Answers for different users.

This ticket is about defining the backend architecture that will allow us to save and retrieve data from a DB.
Catching intent, and capturing intents in binaries (true and false) is part of a different ticket, for now just assume that we are sending and receiving JSON payloads to the database:
{
"businessId": 1234,
"braile": true,
"ramp":true,
"restroom": false,
"photos":[]
}
Questions:
-What storage type do we need (DB, Spreadsheets, ??)
-What type of API do we need (RESTful, GraphQL ?)
-How we store data?
-How we update data?
-How we get data?
-How we delete data?
To make the Access-bot work properly we need to persist information provided by a customer and use it to generate Answers for different users.
This ticket is about defining the backend architecture that will allow us to save and retrieve data from a DB.
Catching intent, and capturing intents in binaries (true and false) is part of a different ticket, for now just assume that we are sending and receiving JSON payloads to the database:
{ "businessId": 1234, "braile": true, "ramp":true, "restroom": false, "photos":[] }Questions:
-What storage type do we need (DB, Spreadsheets, ??)
-What type of API do we need (RESTful, GraphQL ?)
-How we store data?
-How we update data?
-How we get data?
-How we delete data?