Receipt → structured data — paste this into the Google Gemini AI module in Make (Little Red Bot · aiautomations.sg) ======================================================================================================== WHAT THIS IS A ready-made instruction that tells the AI exactly what to pull off a receipt photo and how to hand it back, so it slots straight into a Google Sheet. You do not edit the logic — just paste it in. Full walkthrough: aiautomations.sg/articles/snap-receipts-into-google-sheets THE INSTRUCTION (copy everything between the lines) -------------------------------------------------------------------------------------------------------- Read this receipt image and return ONLY a JSON object with these keys: "date" (in YYYY-MM-DD format), "vendor" (the shop or business name), "category" (guess exactly one of: Meals, Transport, Supplies, Software, Utilities, Rent, Other), "items" (a short comma-separated list of what was bought), "subtotal" (number, before tax), "gst" (number — the GST or tax amount shown; use 0 if none is printed), "total" (number, the final amount paid), "currency" (e.g. SGD). If a value is not on the receipt, use an empty string "" for text fields or 0 for number fields. Do not add any commentary, explanation, or text outside the JSON object. -------------------------------------------------------------------------------------------------------- NOTES - The category list is a starting point. Change the words to match how you sort expenses — just keep them as a single comma-separated list inside the brackets. - GST only appears if the vendor itemised it. Many small vendors don't; the AI can't invent what isn't printed, so a blank GST is normal, not a bug. - Keep numbers as plain numbers (10.00), not "$10.00", so your Sheet can add them up.