Switch to dark mode

nav_title: Reference

nav_order: 40

Lemma Language Reference

Lemma syntax is meant to be hard to misuse. It favours readable keywords over punctuation, ignores insignificant whitespace (indentation is for people; newlines are optional), and treats identifiers as case-insensitive.

Building blocks

Lemma can be written in .lemma files however you like. The CLI ignores file names and reads only what those files contain. A file may hold one spec or many, optionally organized under a repo. Inside a spec, after an optional commentary, data, uses, with, rule, and meta may appear in any order.

repo

A repo <name> declaration groups the specs that follow, until the next repo line. You can leave out a repo statement and the specs in your file join the default repository with everything else that has no name. The name lemma is reserved for the embedded units stdlib (uses lemma units). See Composing specs — Repositories.

spec

spec <name> starts a namespace for data and rules. An optional effective datetime on the same line (spec pricing 2026-01-01) places that body on a temporal timeline. Names may use /, ., and - segments (spec employee/contract, spec nl.tax.brackets). Versioning is temporal only — there is no version tag in the name. A file may contain several specs.

Commentary

The only documentation allowed inside source is a triple-quoted commentary block immediately after the spec line (after an optional effective datetime). There is no inline comment syntax like #, //, or --, to keep specs readable and avoid comments that may contradict the implementation. The goal is a single source of truth, after all.

spec exams 2026-01-01
"""
This spec determines graduation.
"""

data score: number
rule graduates: score > 5

Commentary after data, rule, or any other keyword is a parse error.

meta

meta attaches documentation metadata to a spec—citations, gazette references, case law, and similar links that explain where a rule comes from. Values are not used in evaluation. They appear on show.meta.

spec overtime_pay 2004-08-02
"""
Maximum average weekly working time.
"""

meta title: "Working time — weekly average"
meta directive: "Directive 2003/88/EC, Article 6"

data hours_per_week: number

rule within_limit: hours_per_week <= 48

The right-hand side may be a text literal or an unquoted identifier (for example v1.2.3). The key title, when present, must be a text literal. Duplicate meta keys fail planning.

data

data declares every input slot and every named type in the spec: a literal value, an open typed input, or a parent type other data can extend. Constraints and units chain with ->. Details are under Data and Extending data.

rule

A rule is a named computed value. Rules may reference data and other rules by name; the engine resolves dependencies. Conditional overrides use unless (next section).

Unless clauses

A rule starts with a default expression and can optionally be overridden by any unless <condition> then <result> clauses. As the natural language implies, the last matching clause wins. Put general cases first and specific overrides later. This mimics how law, policies and contracts are often written down: in principle X applies, unless in specific case Y, then Z.

spec order_discount

data quantity: number
data is_vip:   false

rule discount: 0%
  unless quantity >= 10  then 10%
  unless quantity >= 50  then 20%
  unless is_vip          then 25%

Overrides stay flat: later rules can change outcomes by conditioning on earlier rules. There is no nesting and no encapsulation. There is no or operator; disjunction is expressed with unless chains or separate boolean rules. More patterns: Conditional logic.

The example’s layout makes the unless chain read as a flat decision table. Last-match-wins removes the need for explicit negations, which keeps the table short and clear.

Operators

Arithmetic

Operator Description Example
+ Addition price + tax
- Subtraction total - discount
* Multiplication price * quantity
/ Division (exact rational) total / count
% Modulo (truncates toward zero) value % 10
^ Exponentiation base ^ exponent

Modulo: a % b uses truncation toward zero, so a == trunc(a / b) * b + (a % b). Negative operands: -7 % 3 = -1, 7 % -3 = 1.

Rounding operators (round, floor, ceil) on measures operate on the magnitude in the operand's declared unit. round (x as gram) rounds the gram magnitude, not the original unit's.

Comparison

Operator Description Example
> Greater than age > 18
< Less than price < 100
>= Greater or equal score >= 70
<= Less or equal weight <= 50
is Equal status is "approved"
is not Not equal status is not "cancelled"
is veto Operand has no value validated_price is veto
is not veto Operand has a value validated_price is not veto

Equality is is / is not only. There is no =, ==, or !=.

See Veto to learn more about veto with forms and examples.

Logical

Operator Description Example
and Logical AND is_valid and not is_blocked
not Logical NOT not is_suspended

There is no or operator. Express disjunction with unless chains or separate boolean rules. Within one condition, use and and not.

Mathematical

Prefix operators, not functions, so parentheses are optional (sqrt value or sqrt(value)). All require a number operand except abs, ceil, floor, and round, which also accept a measure: the unit is preserved and the operator applies to the magnitude in the operand's bound unit.

Operator Description Example
sqrt Square root sqrt(value) or sqrt value
sin Sine sin(angle) or sin angle
cos Cosine cos(angle) or cos angle
tan Tangent tan(angle) or tan angle
asin Inverse sine asin(value) or asin value
acos Inverse cosine acos(value) or acos value
atan Inverse tangent atan(value) or atan value
log Natural logarithm log(value) or log value
exp Exponential exp(value) or exp value
abs Absolute value (quantities too) abs(value) or abs value
floor Round down (quantities too) floor(value) or floor value
ceil Round up (quantities too) ceil(value) or ceil value
round Round nearest (quantities too) round(value) or round value

Type cast (as)

Chained casts nest from left to right: expr as unit as unit … as number.

Form Description Example
as <unit> Convert, relabel, or construct a measure/ratio in that unit mass as gram, 5 as eur, rate as hour
as number Strip to raw magnitude (requires explicit unit on prior step for quantities/ranges) 10 eur as number, span as day as number

Same-family conversion applies factors (2 kilogram as gram2000 gram). Cross-family relabel keeps magnitude (5 eur as kg5 kg).

as binds tighter than *, /, and %. In balance / rate as month, the as month applies to rate, not to the quotient. To convert the result of an arithmetic expression, use parentheses: (balance / rate) as month.

Literal quantities and ratios carry an explicit unit, so 10 eur as number and 25% as number plan without an extra unit step. Named data references need the full chain: amount as eur as number, not amount as number.

Date, measure, and time ranges cannot use bare as number (unit is ambiguous). Project span width with as <unit> as number, e.g. start...end as day as number, (09:00...17:00) as hour as number, (30 kilogram...35 kilogram) as stone as number. Calendar span units are singular year and month. Duration span units (day, hour, second, …) require uses lemma units when not declared locally.

Number ranges allow bare as number (span width with no unit).

Precedence

Lower binds looser. Use parentheses when an operand would otherwise bind too tightly.

Level Constructs
Lowest and
not
Comparisons (>, <, >=, <=, is, is not), in, date predicates, is veto
+, -
*, /, %
^
as
... (range literal)
Highest Atoms, math prefixes (sqrt, …), veto, now, past/future windows

So balance / rate as month parses as balance / (rate as month), and rate * a...b parses as rate * (a...b) because ... binds tighter than *. Write (rate * a)...b when the product should be a range endpoint.

Using other Specs

Specs are composed with uses and with. There is no inheritance. For unpinned versus pinned imports, temporal slices, coverage, and interface checks, see Composing specs.

Write uses spec_name to import with an alias equal to the last path segment of the target name, or uses alias: spec_name for an explicit alias. Add an effective datetime after the target to pin that edge (uses spec_name 2025-01-01, or a bare year YYYY for that year's Jan 1 00:00). Versioning is temporal only: multiple rows of the same name with different effective_from datetimes.

Temporal versions

The same spec name may appear several times with different effective datetimes. Each row is immutable; you add a new row on the timeline instead of editing history in place.

spec points

data base_points: 100
spec points 2025-01-01

data base_points: 120
spec order

uses p: points

rule total: p.base_points

Evaluating order before 2025-01-01 uses base_points: 100; from 2025-01-01 onward, 120. See Composing specs for unpinned vs pinned imports.

Pinning and evaluation instant

Mechanism Syntax Effect
Spec row spec points 2025-01-01 Declares a body effective from that datetime
Pinned import uses f: finance 2025-06-01 or uses f: finance 2025 Locks the dependency (and its transitive imports) to that instant
Run instant lemma run points --effective 2025-03-01 (CLI) or Accept-Datetime (HTTP) Picks which temporal row of the root spec is active

Bare year on a pin (2025) means that year's Jan 1 00:00, same as datetime literals. HTTP details for Accept-Datetime, Vary, and Memento-Datetime: CLI — API Defaults.

Self-reference restriction

A spec may depend on an earlier temporal body with the same base name when the reference resolves to a different effective_from row (planning compares spec bodies by identity, not by bare name):

spec finance 2026-01-01
data rate: 1
spec finance 2027-01-01
uses finance 2026-01-01
rule ok: finance.rate

Both uses finance 2026-01-01 (implicit alias) and uses prev: finance 2026-01-01 (explicit alias) are valid. Qualified access uses the import alias (finance.rate or prev.rate).

Planning rejects a reference that resolves to the same spec body, for example spec finance with uses finance, or spec finance 2026-01-01 with uses finance 2026-01-01. Dependency cycles across temporal rows (for example 2026 depending on 2027 while 2027 depends on 2026) are rejected as spec dependency cycles.

Registry references

Registry references use the @ prefix:

spec ledger_spec

uses iso: @iso/countries alpha2

data country: iso.code

Cross-repo references

Local multi-repo workspaces qualify the target with a repository name (no @):

repo accounting

spec invoice
data amount: number
repo billing

spec statement

uses inv: accounting invoice

rule total: inv.amount

uses inv: accounting invoice imports invoice from the accounting repository. Registry imports keep the @ form (uses iso: @iso/countries alpha2). See Composing specs — Repositories.

Unpinned vs pinned imports

An unpinned import (uses p: policy) follows the dependency's timeline: planning may split the consumer into temporal slices at dependency effective_from boundaries, and resolved values can change when the dependency gains a new row. A pinned import (uses f: finance 2025-06-01) freezes that edge (and its transitive imports) to the body active at that instant. Coverage gaps and interface compatibility across slices are checked at planning — details in Composing specs.

uses and qualified parents

Bring another spec into scope with uses <alias>: <target> (optional effective datetime on the target). Reference data defined there with a qualified parent: data x: alias.name. Temporal pins belong on the uses line.

spec base_types

data currency: text
  -> option "EUR"
  -> option "USD"
spec pricing

data rate: ratio
  -> maximum 100%
spec product_pricing

uses base: base_types

uses rates: pricing

data currency: base.currency
data discount_rate: rates.rate
  -> maximum 50%

Pin which temporal version of a dependency applies for that edge:

spec finance 2026-01-01

data money: measure
  -> unit eur 1.00
spec accounts

uses fin: finance 2026-01-15

data wallet: fin.money

These edges participate in temporal slicing: the engine creates slice boundaries when a dependency has multiple temporal versions and the consumer references it without a per-edge pin.

Setting data on an imported spec (with)

with sets a literal or reference on a data slot of a spec you uses. The left-hand side must be an import path (alias.field or alias.nested.field). Local names (with x: …) are rejected; use data for slots in the current spec.

Constraint chains (-> ...) belong on data and cannot be used on with.

spec base_employee
data name: text
data monthly_salary: number
spec specific_employee
uses employee: base_employee
with employee.name: "Alice Smith"
with employee.monthly_salary: 7_500

rule employee_summary: employee.name

Read imported data or rules in expressions without with when you do not need to override values:

spec inner
data x: 1
spec outer
uses i: inner
rule r: i.x

Scenario parameters (same import, different values)

spec pricing
data price: 100
data discount: 0%
rule final_price: price * (100% - discount)
spec scenarios
uses retail: pricing
with retail.discount: 5%

uses wholesale: pricing
with wholesale.discount: 15%
with wholesale.price: 80

rule retail_final: retail.final_price
rule wholesale_final: wholesale.final_price

Binding with a local source

When the RHS is a name in the enclosing spec (not a dotted import path), the LHS must still be an import path:

spec inner
data slot: number
  -> minimum 0
  -> maximum 100
spec outer
uses i: inner
data src: 42
with i.slot: src
rule r: i.slot

By contrast, data x: someident declares x with someident as its parent type: it points at another data declaration rather than copying that declaration's value.

Primitive types

Lemma provides these primitive types:

  • boolean - true/false values
  • number - dimensionless numeric values (no units)
  • number range - half-open numeric intervals
  • measure - numeric values with units (mass, money, time periods via units.duration, etc.)
  • measure range - half-open intervals with measure endpoints in one unit family
  • text - string values
  • date - ISO 8601 dates
  • date range - half-open date/datetime intervals
  • time - time values
  • time range - half-open time-of-day intervals (09:00...17:00)
  • ratio - proportional values (percent, permille)
  • ratio range - half-open ratio intervals

Numbers are stored and computed as exact rationals (ℚ); API output is a decimal string. See Numeric precision.

Number literals

  • Integers and decimals: 42, 3.14, 75_000 (underscores are digit separators)
  • Scientific notation: 1.23e10, 5e-3

Ranges

Ranges express half-open intervals: lower inclusive, upper exclusive. Containment uses in:

spec membership_bands

uses lemma units

data age:   25 year
data score: 50
data event: 2024-03-15

rule adult: age in 18 year...67 year

rule in_band: score in 0...100

rule in_period: event in 2024-01-01...2024-06-15

At the upper bound, in is false (67 year is not inside 18 year...67 year).

Range kinds

Type Endpoints Typical use
date range Dates or datetimes (2024-01-01...2024-06-15) Employment periods, billing windows
time range Times (09:00...17:00) Business hour, shift windows
number range Dimensionless numbers (0...100) Scores, tiers
measure range Quantities in one unit family (30 kilogram...35 kilogram) Weight bands, duration bands, money bands
ratio range Ratios (0%...50%) Allowed discount bands

Any rangeable named measure type can also be declared with a range suffix, e.g. data estimated: money range or data band: units.calendar range -> suggest 18 year...67 year.

Calendar intervals use month/year units from uses lemma units (units.calendar). Inline literals (18 year...67 year) and in work like other ranges. Endpoints must be calendar units (year, month). Do not mix calendar and duration units in one literal (12 year...7 day is a planning error). Do not mix dates and calendar endpoints (2024-01-01...18 year is rejected).

Time ranges are half-open like all ranges. Endpoints must share the same timezone (including both absent). Literal order does not imply midnight wraparound: 22:00...02:00 is ordered [02:00, 22:00) with an 20-hour span, not an overnight window.

Declare range slots on data:

spec range_slots

uses lemma units

data band: units.calendar range
  -> suggest 18 year...67 year

data window: time range
  -> suggest 09:00...17:00

data period: date range
  -> suggest 2024-01-01...2024-12-31

data tier: number range
  -> suggest 0...100

Data commands on range types: help, suggest; measure range also accepts unit rows like measure.

Span: (lo...hi) as <unit>

Parentheses around a range literal or expression, then as, yield the width of the interval in the target unit (a scalar), not another range:

spec range_spans

uses lemma units

rule days_between: (2024-06-01...2024-06-15) as day

rule width_kg: (30 kilogram...35 kilogram) as kilogram

rule span_years: (1990-05-20...2024-06-15) as year
Range type as targets (examples) Notes
date range day, month, year, duration units, calendar units Calendar-aware where applicable
time range Duration units only (hour, minute, second, …) No calendar units; bare as number rejected
number range number, duration units
measure range Same-family measure units (mass, money, duration, calendar, …) Cross-family span (e.g. mass range as day) is rejected at planning
ratio range Ratio units (percent, …)
calendar interval (inline literal or units.calendar suggestion) Same-family calendar units Span uses month/year arithmetic

Range arithmetic and comparison

Ranges support comparison and arithmetic consistent with their kind.

+ and - on the right endpoint are part of the range literal (endpoint extension):

spec range_arithmetic

uses lemma units

data start: date
data length: units.calendar

rule long_enough: 2024-06-01...2024-06-15 >= 7 day

rule shifted: 18 year...67 year + 2 year

rule extended: 2024-01-01...2024-06-15 + 1 month

rule membership: now in start...start + length

rule span_days: ((2024-02-15...2024-03-15) + 1 day) as day

Span arithmetic (adding to the width of an interval, not shifting an endpoint) requires parentheses around the range, as in span_days above.

Date endpoints can be built from separate date values: hire_date...today.

For duration quantities, import SI types with uses lemma units so literals like 25 year and 18 year...67 year resolve (units.duration).

Data

Every input slot and every named type is declared with data. The right-hand side is either a literal value or a type (a primitive like number, or another data name as parent type). Constraints chain with ->.

Values

A literal prefills the slot and Lemma infers the type. Callers may override at evaluation time; interactive UIs typically skip review for prefilled fields (including literal with bindings on templates):

spec employment

uses lemma units

data name:       "Alice"
data age:        35
data start_date: 2024-01-15
data tax_rate:   15%
data is_manager: true
data workweek:   40 hour
data salary:     75_000

Open inputs

Declare a type without a value to leave the slot open for evaluation. Add constraints on the same declaration. Use -> suggest for a suggestion (UIs may offer it; Enter to accept); this differs from a literal prefilled value or a template with alias.field: literal binding:

spec loan_application

data birth_date: date

data rating: number
  -> minimum 0
  -> maximum 100

data status: text
  -> option "active"
  -> option "inactive"
  -> suggest "active"

data amount: measure
  -> unit eur 1.00
  -> unit usd 0.91
  -> decimals 2

A literal on the right-hand side prefills the slot. A type alone leaves it open. -> suggest is only a suggestion for callers or UIs; it does not prefill and so the engine still requires the value to be provided.

Constraints such as -> minimum, -> maximum, -> option, -> unit, -> decimals, -> suggest, and -> help depend on the primitive — see Data commands. At evaluation, an open input with no supplied value yields a missing-data veto when the rule needs it; a bad value (wrong type, failed constraint, disallowed option, excess decimals) vetoes that data. Duplicate names that canonicalize to the same identifier (for example Age and age) are a request error.

Named types

When the right-hand side is a primitive or another data name (not a literal), the declaration defines a named data definition that other data can extend:

spec warehouse

data mass: measure
  -> unit kilogram 1.0
  -> unit pound 0.453592

data weight:         mass
data package_weight: 75 kilogram

data weight: mass is an open input whose parent is mass. data package_weight: 75 kilogram is a value whose parent is inferred as mass.

Extending data

A data declaration whose right-hand side is a primitive or another data name can carry -> constraints. Other data extend it by naming it on the right-hand side.

Example: money

spec money_type

data money: measure
  -> unit eur 1.00
  -> unit usd 0.91
  -> decimals 2
  -> minimum 0 eur

A data declaration can also extend another data name:

spec extended_types

data money: measure
  -> unit eur 1.00
  -> unit usd 0.91

data price: money
  -> minimum 0 eur

On measure parents, a child -> unit may add new units. Redeclaring a unit already inherited from the parent with a different factor or decomposition is a planning error (same as ratio); an identical redeclare is allowed.

Data commands

Each -> row on a data declaration is a data command. Built-in primitives ship default help text (override with -> help "…"):

Type Default help
boolean Whether this holds (true or false).
number A dimensionless number.
number range The lower and upper bound of the number range.
text A text value.
measure A numeric amount in one of this type's units.
measure range The lower and upper bound of the measure range in the same unit.
ratio A ratio in one of this type's units (e.g. percent).
ratio range The lower and upper bound of the ratio range.
date A date, or a date and time with optional timezone.
date range The start date and end date of the date range.
time A time of day, with optional timezone.
time range The start time and end time of the time range.

For measure and number:

  • unit <name> <value> - Define a unit (measure only; see Compound units for derived forms)
  • decimals <n> - Set decimal precision (0-255)
  • minimum <value> - Set minimum value
  • maximum <value> - Set maximum value
  • help "<text>" - Add help text
  • suggest <value> - Set suggestion value (UI hint; does not commit)

For ratio:

  • unit <name> <value> - Define custom ratio units
  • minimum <value> - Set minimum value
  • maximum <value> - Set maximum value
  • help "<text>" - Add help text
  • suggest <value> - Set suggestion value (UI hint; does not commit)

In the show JSON, measure and ratio types expose type-level minimum / maximum in canonical form (same as evaluation). Each units[] entry may also include minimum, maximum, and suggestion as magnitudes in that unit, so a UI can bind to them without converting on the client.

For text:

  • option "<value>" - Add a single allowed option
  • options "<value1>" "<value2>" ... - Add multiple allowed options
  • length <n> - Exact string length
  • help "<text>" - Add help text
  • suggest "<value>" - Set suggestion value (UI hint; does not commit)

For date and time:

  • minimum <value> - Minimum date/time
  • maximum <value> - Maximum date/time
  • help "<text>" - Add help text
  • suggest <value> - Set suggestion value (UI hint; does not commit)

For date range, number range, measure range, time range, and ratio range:

  • lower <value> - Minimum left endpoint (element type)
  • upper <value> - Maximum right endpoint (element type)
  • minimum <value> - Minimum span width (see span table; not an endpoint envelope)
  • maximum <value> - Maximum span width
  • help "<text>" - Add help text
  • suggest <lo>...<hi> - Suggested interval (half-open; UI hint)

On ranges, minimum / maximum always mean width. Endpoint limits use lower / upper. Measure and ratio range bounds may use any declaring unit of the type (same mixed-unit model as scalar measure min/max). Date range width may be duration or calendar, but not both on one type; time range width is duration only.

For measure range only: unit <name> <value>, same as measure (endpoints must share one unit family).

For boolean:

  • help "<text>" - Add help text
  • suggest <value> - Set suggestion value (UI hint; does not commit)

Compound units

On measure, -> unit may define a named unit from other units with /, *, and ^. Declare base units on earlier measure types in the same spec (or import them) so dimensions resolve. Import uses lemma units when the expression needs stdlib time bases (second, hour, …).

spec rates

uses lemma units

data money: measure
  -> unit eur 1.00
  -> unit usd 0.90

data rate: measure
  -> unit eur_per_hour eur/hour

data time_worked: 120 hour
data wage: 60 eur_per_hour

rule total: wage * time_worked

For total you can just multiply the rate by the time worked. Lemma keeps the units consistent, so the product is an amount of money in the currencies you defined. You do not need to write any conversions yourself and you prohibit anyone from accidentally adding money and time together.

Layer compounds: a later unit may reference an earlier named compound (eur_per_hour/employee). Planning checks dimensional consistency.

Built-in Lemma units (uses lemma units)

Engine::new() embeds repo lemma / spec units. Import with uses lemma units (or uses si: lemma units).

Unit names are singular only (8 hour, not 8 hours). Length uses American spelling (meter, not metre). Thermodynamic temperature is kelvin only (no Celsius/Fahrenheit — affine scales need a local single-unit type).

Type Role Notes
units.duration Time periods Canonical second; includes nanosecondweek
units.length Length Canonical meter; SI scales + imperial (inch, foot, yard, mile)
units.mass Mass Canonical kilogram; SI scales + imperial (ounce, pound, ton)
units.current Electric current Canonical ampere
units.temperature Thermodynamic temperature Canonical kelvin
units.substance Amount of substance Canonical mole
units.luminous_intensity Luminous intensity Canonical candela
units.calendar Calendar periods Canonical month; year = 12 × month
units.area Area square_meter, acre
units.volume Volume cubic_meter, liter, milliliter, gallon
units.force Force newton, kilonewton (compounds of mass×length/time²)
units.pressure Pressure pascal, kilopascal, bar
units.energy Energy joule, kilojoule, watt_hour
units.power Power watt, kilowatt
units.frequency Frequency hertz, kilohertz
units.charge Electric charge coulomb
units.voltage Electric potential volt, millivolt, kilovolt
units.resistance Electric resistance ohm, kilohm
units.capacitance Capacitance farad, microfarad
units.information Digital information bit, byte, kibibyte, mebibyte, gibibyte

After uses lemma units, declare slots against those types directly:

spec shipment

uses lemma units

data package_weight: units.mass
data transit_time:   units.duration

Or use unit literals once the types are in scope (12 kilogram, 8 hour, 1 inch). Prefer the stdlib types over redefining kilogram or hour in every spec.

User loads cannot claim the reserved repository name lemma.

Boolean Literals

Multiple aliases for readability: true = yes and false = no.

All are interchangeable:

spec boolean_examples

data is_active:   true
data is_approved: yes
data can_decline: false

Special Expressions

now

now is the evaluation instant (the run's effective datetime). It equals the CLI --effective / HTTP Accept-Datetime value when set; otherwise the current clock.

Date predicates and windows

Require duration/calendar units from uses lemma units (or local equivalents) where noted.

Form Meaning
date in past / date in future Strictly before / after now (parenthesize when another declaration follows on the next line)
date in past N <duration> / in future N <duration> Within the last / next N duration units of now (inclusive window)
past N <duration> / future N <duration> A date range window relative to now (usable as a range value or with in)
date in calendar year|month|week Same calendar period as now
date in past|future calendar year|month|week Adjacent calendar period relative to now
date not in calendar year|month|week Not the current calendar period
spec recency

uses lemma units

data event_date: date
data delivered:  date

rule was_before_now: (event_date in past)
rule recent:         delivered in past 7 day
rule this_year:      event_date in calendar year
rule last_month:     event_date in past calendar month
rule this_week:      event_date in calendar week
rule window:         past 7 day

Veto

Blocks the rule entirely (no valid result):

spec veto_example

data value:               number
data constraint_violated: boolean

rule result: value
  unless constraint_violated then veto "Constraint violated"

A veto is not a boolean: it prevents the rule from producing any result at all. If another rule needs a vetoed value, the veto propagates. An unless arm that does not evaluate the vetoed dependency can still produce a value (the fallback wins). Probe with is veto / is not veto without requiring the value. Missing open inputs and failed runtime constraints also surface as veto. See Veto.

Date and time formats

Dates and datetimes

ISO 8601 format:

spec date_formats

data date_only:     2024-01-15
data date_time:     2024-01-15T14:30:00Z
data with_timezone: 2024-01-15T14:30:00+01:00

Datetimes that denote the same absolute instant compare equal even when offsets differ (2024-01-15T14:30:00Z is 2024-01-15T15:30:00+01:00).

Times

Time-of-day literals use HH:MM:SS with an optional timezone. Time-range endpoints must share a timezone (both offset/Z or both local); mixing is a planning error.

spec time_formats

data open:  09:00:00
data close: 17:30:00+01:00

See also date predicates.

Date arithmetic

Dates compare directly. Add or subtract a duration or calendar quantity to shift a date (requires uses lemma units or local equivalents):

spec deadlines

uses lemma units

data today:    2024-09-30
data deadline: 2024-12-31

rule days_until: (today...deadline) as day

rule follow_up: deadline + 14 day

Calendar vs duration: calendar units (year, month) use calendar-aware arithmetic; duration units (day, hour, second, …) use fixed length. Adding one month to March 1 yields April 1; adding 30 day always adds exactly 30 × 86400 second.

Month-end clamping: adding month or year clamps to the last valid day of the target month. January 31 + 1 month → February 28 (or 29 in a leap year).

Ratios

Ratio values represent proportions. The ratio type includes percent and permille units by default.

Literal syntax:

  • 15 percent or 15%: 15 percent (canonical multiplier 0.15)
  • 5 permille or 5%%: 5 permille (canonical multiplier 0.005)
spec ratio_literals

data tax_rate:   15%
data discount:   20%
data completion: 87.5%
data error_rate: 2%%

Custom ratio types:

spec custom_ratios

data discount_ratio: ratio
  -> minimum 0%
  -> maximum 100%

data discount: 25%

Use in calculations:

spec ratio_math

data price:         100
data discount_rate: 20%

rule discount_amount: price * discount_rate

rule after_discount: price * (100% - discount_rate)

Number to ratio conversion:

spec number_to_ratio

rule discount_as_percent: 0.25 as percent

Evaluate JSON / explanations

Evaluate responses (lemma run --json, HTTP POST, SDK run) carry per-rule values, optional missing_data, and — when explanations are opted in — a per-rule explanation tree. Shape: explanation.v1.json (root and nested rules use "type":"rule" + "name"; bound data "type":"data"; unused cause paths "type":"data_unused"). See CLI — Explanations.

Test coverage

Regenerate with cargo coverage all (requires [cargo-llvm-cov](https://github.com/taiki-e/cargo-llvm-cov)).

Benchmarks