Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aeria-org/aeria-lang

A schema definition language for Aeria
https://github.com/aeria-org/aeria-lang

aeria bun deno dsl javascript node purescript typescript

Last synced: 18 days ago
JSON representation

A schema definition language for Aeria

Awesome Lists containing this project

README

        

# Aeria Lang ![https://github.com/aeria-org/aeria-lang/actions/workflows/ci.yaml](https://github.com/aeria-org/aeria-lang/actions/workflows/ci.yaml/badge.svg)

```
collection PetToy {
indexes {
name
}
properties {
name str
brand enum @values(["dogs choice", "the pet company"])
}
}

collection Pet {
indexes {
name
}
properties {
name str
toys {
properties {
favorite PetToy
}
}
}
}
```