Hello im reading the custom-bussines-logic document, but im still trying to understand how to create the schema.
const responseBody = {
direcciones: recptorDirList,
actividadesEconomicas: recptorActecoList,
};
that is my response body,
EchoResponse: a.customType({
direcciones: a.json(),
actividadesEconomicas: a.json()
}),
is this correct?
how to test the function locally or only with sandbox ?