Serverless notebook
Notes with an API mindset.
Capture implementation context, persist each payload to KV, and keep small decisions easy to retrieve.
Persistence layer
KV Store
Each note is stored as a namespaced JSON document under noterelay:note:{id}.
Collection
Your note endpoints
Release readiness
Updated Jan 2, 2025, 8:00 PM
Confirm the v1 endpoints, add response examples, and verify the persistence flow before handoff.
#release#api
test
Updated Jul 27, 2026, 2:44 PM
test
#test
Notes payload schema
Updated Jan 1, 2025, 8:00 PM
A note includes id, title, body, tags, pinned, createdAt, and updatedAt. Keys are stored under noterelay:note:{id}.
#schema#kv
Capture ideas quickly
Updated Dec 31, 2024, 8:00 PM
Keep short implementation decisions here so context stays close to the endpoint workflow.
#planning