in lib/infrastructure-stack.ts [57:67]
var create_shop_struct = function(event) {
const body = JSON.parse(event.body);
return {
name: body.name,
specialty: body.specialty,
address: body.address,
url: body.url,
description: body.description
};
};