entity(name, fields, options).
id — a 40-char lowercase-hex, lexicographically-sortable string (timestamp + counter) — plus the column order you declared. (The runtime rejects non-conforming ids like ULIDs/UUIDs, because cursor pagination relies on the fixed 40-char width.)
Field types
Modifiers
.optional()— column is nullable.unique()— adds a unique index on that one column
CRDT fields
Pylon rows are backed by Loro docs in CRDT mode. The database row is a projection of that doc, so ordinary queries, indexes, policies, and search keep working while collaborative fields can merge through CRDT updates. Scalar fields default to LWW registers.field.richtext() defaults to
LoroText, and a normal string can be upgraded when you need character-level
merge:
All five CRDT kinds (
text, counter, list, movable-list, tree) are
implemented end-to-end as of v0.3.100 — broadcasts ship the full Loro snapshot
on first write per row, then incremental deltas (v0.3.105 SQLite, v0.3.107
Postgres) keyed off the last-broadcast version vector.
Field gates: serverOnly & readonly
Two modifiers control how a field flows through the HTTP boundary. They’re additive — the field type, optionality, and indexes still work the same..serverOnly() — the field is stripped from every public response shape: GET /api/entities/<entity>, GET /api/entities/<entity>/<id>, the session-projection /api/auth/session, and sync push deltas. It stays readable from inside server functions via ctx.db.* so your handler can do internal work with it (e.g. webhook receivers look up stripeCustomerId from the Stripe customer id without leaking the value to clients).
If you want the field exposed to a specific client, re-serialize it inside a function return — ctx.db.unsafe.get (post v0.3.160) skips the strip; the default ctx.db.get honors it.
.readonly() — the field is settable on insert but rejected on update. Any PATCH /api/entities/<entity>/<id> payload that mentions the field returns 400 READONLY_FIELD before the policy even runs. Closes the canonical IDOR-via-update-payload shape:
ctx.db.update inside a mutation/action are not blocked by .readonly(). Server code is trusted to enforce its own invariants; readonly is an HTTP-boundary defense, not a hard write-lock.
Owned writes: field.owner()
Requires pylon 0.3.261+.
.owner() marks a field as the row’s owner, stamped from the session and unspoofable. It’s what lets optimistic, local-first writes be the default for owned data — without a server function.
authorId, buyerId, sellerId, createdBy) used to force a choice — a plain optimistic db.insert that trusts a client-supplied owner id (spoofable), or a server function that’s secure but gives no optimistic feedback unless you hand-write an optimistic callback. field.owner() removes the trade-off: the client db.inserts with its own session id (instant local paint, no round-trip) and the server stamps + verifies the owner, so a forged id is rejected before the row lands.
On insert, the framework:
- fills the field from
auth.userIdwhen it’s omitted; - passes a value through unchanged when it equals the caller’s own id — this is the common path: the client sends its own id so the optimistic ghost and the canonical row match, no flash;
- rejects a non-admin caller who supplies a different non-empty value with
403 OWNER_MISMATCH— closing the IDOR shape where a policy gates ondata.ownerId == auth.userIdbut the attacker just sends someone else’s id; - rejects an anonymous caller (no session at all) with
401 OWNER_REQUIRED— you can’t own a row anonymously. Guests count: their stable guest id is stamped like any other.
.owner() behaves like .readonly() — the owner can’t be reassigned through the HTTP entity routes. Admin contexts may set an explicit value (migrations, tooling).
Reach for field.owner() instead of writing a function whenever the only server-authoritative part of a create is who made it. Mechanically it’s a dynamic default: .owner() serializes to a {"$auth":"userId"} marker that the auth-aware mutation pipeline fills — the storage layer never stamps it without a session, so there’s no way to end up with a row “owned” by no one.
Indexes
Declare composite or non-unique indexes in the options block:Relationships
Pylon doesn’t have a separate relation primitive — usefield.id("Other") and query with filters. The typed client db.query("Message", { roomId }) narrows by indexed columns.
Schema changes
Editapp.ts, save — pylon dev picks up the change and runs a live migration. Pylon’s storage layer plans the diff (add column, drop index, etc.) and applies it to your database, whether SQLite or Postgres. Destructive operations (dropping a column that has data) require you to bump manifest.version.
Next
Policies
Control who can read and write each row.
Functions
Write server-side logic.