Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Field Tags Reference

A model’s behaviour is declared with three struct tags on each field. This page documents all three, and every directive accepted by the mfx tag.

The three tags

TagControlsDefault if omitted
jsonfield name in request and response bodiessnake_case of the Go field name
dbdatabase column namethe resolved json name
mfxfield behaviour — validation, querying, and moreno directives
Title string `json:"title" db:"title" mfx:"required,filterable,sortable"`

The mfx tag holds a comma-separated list of directives. Whitespace around each directive is trimmed. Directives are either flags (a bare word) or key-value directives (key:value).

An unrecognised directive is a registration error, and the message names the directive it thinks you meant:

maniflex: model "User" field "Role" has unknown mfx option
"read_only" (did you mean "readonly"?) — an unrecognised option is
not applied, so a protective directive that is misspelt leaves the
field unprotected

Directives used to be matched exactly and anything else discarded in silence. For a descriptive directive that was merely puzzling — a misspelt sortable just meant no sorting — but for a protective one it was a hole: mfx:"read_only" left Readonly false, so the field stayed writable by any client, with nothing in the logs or the OpenAPI spec to show it. Directives are case-sensitive and lowercase; mfx:"Readonly" is rejected rather than quietly accepted.

Excluding a field

A field is dropped from the model entirely — no column, not in any payload — if any of its three tags is set to -:

Internal string `mfx:"-"`     // excluded
Cache    string `json:"-"`    // excluded
Scratch  string `db:"-"`      // excluded

Validation directives

These constrain the values a field accepts on write.

DirectiveEffect
requiredthe field must be present in a create request
enum:a|b|cthe value must be one of the pipe-separated options
min:Nnumeric minimum (N is a number)
max:Nnumeric maximum
minlen:Nminimum length — characters for a string, items for a list
maxlen:Nmaximum length
default:Vvalue applied when the field is absent; cast to the field’s type
Status   string `json:"status"   mfx:"required,enum:draft|published|archived"`
Priority int    `json:"priority" mfx:"min:1,max:5,default:3"`
Password string `json:"password" mfx:"required,writeonly,minlen:8"`
Message  string `json:"message"  mfx:"maxlen:5000"`

Magnitude vs. length

min:/max: bound a number’s value. minlen:/maxlen: bound a length — of a string, or of a list. Putting one where the other belongs is a registration error naming the tag you wanted:

maniflex: model "User" field "Password" has mfx:"min:"/"max:" but its Go type
is string — those bound a number's magnitude — for a length bound use
mfx:"minlen:"/"maxlen:"

The error exists because the mistake used to be invisible. mfx:"max:5000" on a string reads exactly like “at most 5000 characters”, and instead rejected every non-empty value at runtime with field "message" must be a number — nothing at startup, and an error message that named neither the tag nor the type. This framework’s own tutorial shipped Password string mfx:"min:8" and rejected every password.

The range a bound may span

A min:/max: value is parsed as a float64, which represents every integer up to 2^53 (9007199254740992) exactly and only some beyond it. On an integer-typed field a bound at or past that point is a registration error rather than a bound enforced as some nearby number:

maniflex: model "Ledger" field "Balance" has an mfx:"max:" bound that float64
rounded to 9223372036854776000, at or beyond 2^53 (9007199254740992) — a bound
is parsed as a float64, which cannot represent every integer past that point, so
the bound enforced would not be the one written.

The rounding is not conservative in either direction: max:9007199254740995 becomes ...996, a ceiling one looser than written, and max:9223372036854775807 — “cap at MaxInt64” — becomes a number above MaxInt64, so the guard can never fire and the column is silently unbounded.

Float-typed fields are unaffected: a bound there is inexact by the nature of the column, and max:1e20 asks for a magnitude rather than an exact value. For an integer range wider than 2^53, check it in a Validate middleware instead.

String length is counted in characters, not bytes. A cap sized against English would otherwise reject the same message written in Arabic or carrying emoji — a limit that behaves differently depending on the writer’s language, and never for the author.

For a maniflex.FileKeys field use max_count: rather than maxlen:; it is the file-specific bound and has a default. Declaring maxlen: there is a registration error pointing at it.

Malformed values are refused at registration

A value these directives cannot use is a startup error, not a silent no-op:

WrittenResult
mfx:"min:abc", mfx:"max:"registration error — not a number
mfx:"maxlen:abc", mfx:"minlen:-1"registration error — not a whole number
mfx:"min:8" on a stringregistration error — use minlen:
mfx:"maxlen:10" on an intregistration error — use max:
mfx:"minlen:10,maxlen:5"registration error — unsatisfiable
mfx:"enum:", mfx:"enum:a||b"registration error — empty option
mfx:"readonly,required"registration error — unsatisfiable

The first two used to be dropped on the floor, so a tag that reads as a constraint enforced nothing. readonly,required is the same unsatisfiable shape as hidden,required: readonly strips the field from the request before the required check runs, so the check never sees it and the field was quietly optional. (hidden implies readonly, so that combination reports its own more specific message.)

Separately, a value that a min/max bound cannot be measured against — a string sent to a numeric field — now fails validation with “must be a number” rather than skipping the check.

How default: is applied

default:V becomes a SQL DEFAULT clause on the column. Nothing applies it in Go — it fires because the INSERT omits the column, so it takes effect whenever a write does not name the field. That holds for both doors into a model:

Create pathColumn omitted when
POST /:modelthe request body has no such key
maniflex.Create[T]the struct field is at its Go zero value

The Go zero is the only signal a struct can give, so a defaulted column cannot be given an explicit zero through Create[T]Priority: 0 against default:3 stores 3. Make the field a pointer when that distinction matters:

Priority *int `json:"priority" mfx:"default:3"` // nil → 3, new(int) → 0

Only defaulted columns behave this way. A zero on a field with no default: tag is written as that zero, on both paths.

Before v0.2.5, Create[T] wrote every column at its Go value and a default: never fired — the same model created over HTTP and in Go disagreed. In the same release, default: on a pointer field started reaching the schema at all; it was previously emitted only for NOT NULL columns and silently dropped.

Write-access directives

These govern whether a field can be set by a client, and when.

DirectiveEffect
readonlystripped from all write operations; values sent by a client are ignored
immutableaccepted on create, rejected on update

BaseModel’s id, created_at and updated_at are all readonly, and that is their only default — none of them is filterable or sortable until the model opts in with ModelConfig.BaseModelTags. Use immutable for values that are set once and must not change afterwards, such as an owner ID.

Both mean “not from a client”. A value the server stamps via ctx.SetFielddb.Tenancy writing a tenant column, an auth middleware writing an owner — is kept, even on a readonly or immutable field. Only values parsed from the request body are stripped.

They cover a multipart upload too. A mfx:"file" field carrying readonly, hidden, or immutable on update refuses an uploaded part with 422 VALIDATION_ERROR, and is left out of the multipart/form-data schema. For a file the client should upload but never see the storage key of, use writeonly — see Who may write a file field.

Email   string `json:"email"    mfx:"required,immutable"`
ApiKey  string `json:"api_key"  mfx:"readonly"`

Response-visibility directives

Both directives drop the field from API responses. They differ in whether the client may write the field.

DirectiveRead in responsesWrite on create / update
writeonlynoyes
hiddennono
  • writeonly is for values the client must supply but should never see again — typically passwords, and the storage key of a private file field. The field is included in the create and update request schemas; only the response is scrubbed.
  • hidden is for values clients have no business touching at all — server-managed internals, audit fields, derived data. The field is dropped from create and update schemas as well, so it cannot be set from the API. It is still stored, and code running inside the pipeline (a middleware on the Service step, for example) can populate it.
// Client sets it on create, never sees it back.
Password string `json:"password" mfx:"required,writeonly"`

// Server-managed; client can neither read nor write it.
InternalScore float64 `json:"internal_score" mfx:"hidden"`

hidden therefore implies readonly — writing it out as mfx:"hidden,readonly" is allowed but redundant. If you want a field the client writes but never reads, that is writeonly, and spelling both (mfx:"hidden,writeonly") leaves it writable: the explicit directive wins over the implication.

mfx:"hidden,required" is rejected at registration. The two contradict — hidden stops the client sending the field, required insists it does — so no request could satisfy it. A value the client must supply but never reads back is mfx:"writeonly,required".

A field that is both readonly and not hidden is the opposite case: visible in responses, never accepted from the client.

json:"-" is treated as hidden and read-only: the field stays a real, persisted column that the server owns, but it never appears in API responses and is never accepted from the client. This matches the Go convention that json:"-" affects serialization, not schema. To exclude a field from the database entirely (no column), use db:"-" or mfx:"-" instead.

Record-locking directives

These freeze a whole record — not just a field — once its state matches a condition. Useful for terminal states in business workflows (posted invoices, closed pay periods, confirmed POs).

DirectiveEffect
lock_when:field=valuewhen the existing record’s field equals value, updates and deletes return 422 RECORD_LOCKED

Multiple lock_when directives accumulate; any matching condition locks the record. The directive can be written on any field — the referenced field is what matters.

Both halves of the directive are checked at registration, so you never ship a rule that silently never matches: the JSON name has to resolve to a real field, and the value has to be one that field could hold. lock_when:count=five on an integer column is a startup error rather than a lock that never fires, as is lock_when against a time.Time or a struct — the directive tests equality and covers string, bool and numeric columns.

The comparison is made on the field’s own type rather than on the two sides’ printed forms, so it does not depend on which shape a driver returns: SQLite reports a bool column as an integer, Postgres as a bool, and a NUMERIC arrives through lib/pq as text. 1 is accepted where the field is a bool.

type Invoice struct {
    maniflex.BaseModel
    Number string
    Status string `mfx:"enum:draft|posted|void,lock_when:status=posted,lock_when:status=void"`
    Amount int
}

The transition into a locked state is itself allowed — when the request arrives, the loaded record is still in its previous state. After that update commits, the record becomes frozen.

lock_when is checked before the write reaches the adapter. On update it runs in the Validate step, ahead of that step’s other rules — but only when the request’s scope is already in place. A forced filter registered on the DB step (db.Tenancy, db.ForceFilter) has not been applied at that point, and a guard reading the row by id alone would answer 422 RECORD_LOCKED for a record the caller’s own reads 404 on, disclosing both that it exists and that it has reached the locked state. So the check moves to the DB step in that case, after the scope is enforced: the same refusal, one step later. Declaring maniflex.ProvidesScope() hoists the scope ahead of Validate and keeps the early abort.

On delete it always runs in the DB step, likewise after the scope. Creates are exempt: there is no prior state to check.

The guard fails closed. It reads the record through the request’s transaction when one is active — so it sees state the same request has written but not yet committed — and if that read fails for any reason other than “no such record”, the request is rejected (500 DB_ERROR) rather than allowed through unchecked.

Pessimistic lock directive

DirectiveEffect
lock_scope:ModelNamebefore a create, acquire a SELECT … FOR UPDATE lock on the row referenced by this field’s value

Eliminates manual ctx.LockForUpdate calls in the most common case: a create that must read-then-write a shared resource without a concurrent write sneaking in between.

type Dispense struct {
    maniflex.BaseModel
    StockID  string `json:"stock_id"  db:"stock_id"  mfx:"required,lock_scope:StockBalance"`
    Quantity int    `json:"quantity"  db:"quantity"  mfx:"required,min:1"`
}

Requirements:

  • The model must run inside a transaction. Register maniflex.WithTransaction(nil) on the Service step; otherwise the DB step aborts with 500 LOCK_SCOPE_NO_TX.
  • The referenced model name must be registered. A typo is caught at startup (in Handler()), so it never reaches production silently.
  • If the referenced row does not exist, the create returns 404 NOT_FOUND.
  • The referenced row must be in the request’s scope. When a forced filter names a column the referenced model also carries, the row is looked up through that filter first, so a create naming another tenant’s row gets the same 404 as one naming a row that is not there — without it, the id was a probe and the lock landed on a row the caller cannot see. A referenced model that carries no such column cannot be scoped this way and is still located by id alone.
server.Pipeline.Service.Register(
    maniflex.WithTransaction(nil),
    maniflex.ForModel("Dispense"),
    maniflex.ForOperation(maniflex.OpCreate),
)

Comparison with ctx.LockForUpdate:

lock_scope tagctx.LockForUpdate
Declarationstruct tagcustom Service middleware
Fields lockedone per tag directiveany ID at runtime
Requires transactionyes (enforced at runtime)yes (enforced at call time)
Use whenone fixed FK to lockdynamic or multiple targets

See Transactions for the underlying ctx.LockForUpdate and BeginTx APIs.

Query directives

These opt a field into the query string. A field is not filterable or sortable unless explicitly tagged.

DirectiveEffect
filterablethe field may be used in ?filter=
sortablethe field may be used in ?sort=
searchablethe field is indexed for native full-text search (?q=); text columns only
cursor_field:<name>opt the model into keyset (cursor) pagination; <name> is the column to walk by — it must be sortable, non-nullable, and a scalar or time.Time field

See Querying for the filter, sort, and cursor-pagination grammar.

Schema directives

DirectiveEffect
uniquea hint to the adapter to add a UNIQUE constraint on the column
indexcreate a (non-unique) index on the column during AutoMigrate
Slug  string `json:"slug"  mfx:"required,unique"`
Email string `json:"email" mfx:"index"`

index creates an index named idx_<table>_<column>. It is skipped when the column is already covered by another index — a unique constraint on the same field (databases index unique columns implicitly), a ModelConfig.Indices entry, or a scheduled-column auto-index — so adding it is always safe. Indexing a foreign-key column (e.g. mfx:"index" on UserID) is a common, valid use.

unique is enforced on both the create-table and the add-column (ALTER TABLE) paths — AutoMigrate creates a UNIQUE INDEX named uidx_<table>_<column> in both cases. Adding a unique column to a table that already holds rows with duplicate values in that column fails migration (the index build errors, naming the table and column) rather than silently dropping the constraint; resolve the duplicates before deploying.

JSON and other custom columns

A bare map[string]any, map[string]string, or []string field has no SQL column mapping and fails AutoMigrate with a clear error. Wrap it in a named type that implements maniflex.SQLTyper (plus driver.Valuer + sql.Scanner) so it controls its own column type — e.g. a JSONMap that maps to JSONB on Postgres and TEXT on SQLite. maniflex.LocaleString is a built-in example. To keep such a field out of the database entirely, tag it mfx:"-".

A NOT NULL column of such a type is given a zero-value DEFAULT so that adding it to a table which already has rows succeeds. For a type whose SQLType is one the migrator has no literal rule for — BLOB, BYTEA, UUID, NUMERIC(12,2) — that default is a CAST to the column’s own type, and the value cast is the type’s zero driver.Valuer output where it has one, else '', {} or [] by kind. Give the type a Value() a zero receiver can answer if the generic choice is wrong for it.

To filter inside such a column, see json_array / json_object above.

Relation directives

A field may declare a relationship to another model. Relations are opt-in — an <Name>ID field is a plain column unless you tag it.

DirectiveEffect
relationmarks an FK field as a BelongsTo; the target is inferred from the field name (AuthorIDAuthor)
relation:Nameexplicit relation; Name is the companion struct field carrying the target type
relation:Name;onDelete:actionsets the referential action — cascade, setNull, or restrict
through:Modelon a slice field, declares a many-to-many relation through the named junction model
norelationdeprecated no-op — relations are no longer inferred from the ID suffix, so nothing to opt out of

onDelete sub-options are joined to the relation: directive with a semicolon, not a comma. Relationships are covered in full in Relations.

A field whose name ends in ID (e.g. UserID) is a plain scalar column unless tagged mfx:"relation". So a value column that merely ends in ID — an external reference, an opaque token — needs no special tag:

ExternalID string `json:"external_id"` // just a string, not a relation
UserID     string `json:"user_id" mfx:"relation"` // → User (opt in)

File upload directives

file marks a field as a file-upload field. The column stores the storage key; multipart form-data is then accepted for create and update on the model.

The field’s Go type must be string (one key) or maniflex.FileKeys (many). Any other type is a registration error — every rule below is keyed on the column being a storage key, so on another type they would all be silently skipped.

DirectiveEffect
filemark the field as a file upload
max_size:Nmaximum file size; accepts KB, MB, GB suffixes, or plain bytes. On FileKeys, per file
max_count:NFileKeys only — maximum number of keys (default 100)
accept:p1|p2allowed MIME-type patterns, e.g. image/*|application/pdf
auto_delete:falsekeep the stored file when the record is hard-deleted or the field is replaced (default: delete it)
upload:presignedmount POST /{model}/{field}/upload-url so the client uploads straight to storage
file_acl:private(default) response carries the raw storage key
file_acl:signedresponse replaces the key with a pre-signed URL (TTL: Config.FilesConfig.SignedURLTTL, default 1h)
file_acl:publicresponse replaces the key with a permanent / long-lived URL
Avatar string            `json:"avatar" mfx:"file,max_size:2MB,accept:image/*"`
Logo   string            `json:"logo"   mfx:"file,file_acl:public,accept:image/*"`
Images maniflex.FileKeys `json:"images" mfx:"file,accept:image/*,max_count:10"`

See File Fields & Uploads for the upload workflow, and Many files per field for FileKeys.

Encryption directives

DirectiveEffect
encryptedthe field is encrypted at rest (AES-256-GCM) and decrypted on read
key:namethe key name passed to the key provider; defaults to default

Encrypted fields cannot be filtered or sorted, because the stored value is ciphertext. If unique is also set, a companion {field}_hmac column enforces uniqueness without exposing the plaintext.

SSN string `json:"ssn" mfx:"encrypted,key:patient-pii"`

Scheduled directives

The scheduled directive declares a time-driven transition on a timestamp field — for example, soft-deleting a row once a timestamp passes. The directive only marks the field; the transitions are applied by a background runner documented in Events & Background Jobs.

It is an advanced feature with several sub-options joined by semicolons:

ExpiresAt time.Time `json:"expires_at" mfx:"scheduled;soft-delete"`
PublishAt time.Time `json:"publish_at" mfx:"scheduled;field=status;from=draft;to=published"`
Sub-optionEffect
soft-deletesoft-delete the row when the timestamp is reached
hard-deletepermanently delete the row when the timestamp is reached
field=Fthe field to change
from=Vapply only when field currently equals V
to=Vthe value to set field to

Locale directives

These apply to fields declared as maniflex.LocaleString — a multilingual string stored as a JSON object keyed by locale code (e.g. {"en":"Finance","ar":"مالية"}).

Mark a field as locale-aware with mfx:"locale". All other locale directives require locale to be present.

DirectiveEffect
localemarks the field as a LocaleString; enables locale-aware response serialisation
json_arraycolumn holds a JSON array; enables the has / not_has filter operators on it
json_objectcolumn holds a JSON object; enables has:key=value / not_has:key=value
split(default) response emits "name" = resolved string and "name_i18n" = full map
resolveresponse always emits "name" as a plain string; no companion field
dynamicresponse emits a string when ?locale= is set, the full map otherwise
default_locale:codefield-level fallback locale (e.g. default_locale:ar) when the client did not request a specific locale
type Department struct {
    maniflex.BaseModel
    Name maniflex.LocaleString `json:"name" mfx:"locale,filterable,sortable"`
    Bio  maniflex.LocaleString `json:"bio"  mfx:"locale,resolve,default_locale:ar"`
}

The resolved locale for a request follows a precedence chain: ?locale= param → Accept-Language header → default_locale tag → model DefaultLocale → app LocaleOptions.Default"en".

See Localization for the full LocaleResolver setup and filtering/sorting behaviour.

Quick reference

DirectiveCategory
requiredvalidation
enum:… min: max: default:validation
readonly immutablewrite access
hidden writeonlyresponse visibility
filterable sortable searchable cursor_field:…querying
unique indexschema
relation relation:… through:…relations
file max_size: max_count: accept: auto_delete:false file_acl: upload:presignedfile upload
encrypted key:…encryption
scheduled;…scheduled transitions
locale split resolve dynamic default_locale:…localization
json_array json_objectJSON columns
-exclude the field