1 unstable release

0.1.0 Oct 23, 2022

#2163 in Database interfaces

24 downloads per month

MIT/Apache and GPL-3.0-only

120KB
3.5K SLoC

Finitio

Finitio is a language for capturing information structure. A little bit like "JSON/XML schema" but on steroids. An example is shown below. For more information about Finitio itself, see www.finitio.io

@import finitio/data

Uuid = String( s | s =~ /^[a-z0-9-]{36}$/ )
Name = String( s | s.length > 0 )
Temp = <celsius> Real( f | f >= 33.0 && f <= 45.0 )
{
  patient : {
    id   : Uuid
    name : Name
    dob  : Date( d | alive: d.year > 1890 )
  }
  symptoms : [ String( s | s.size > 0 ) ]
  temperature : Temp
}

Finitio-rs is a parser and validator written in rust.

Dependencies

~3–4.5MB
~84K SLoC