Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aeria-org/aeria-lang
- Owner: aeria-org
- License: mit
- Created: 2024-03-20T22:23:05.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-11-15T01:03:51.000Z (about 1 month ago)
- Last Synced: 2024-11-24T17:46:08.538Z (28 days ago)
- Topics: aeria, bun, deno, dsl, javascript, node, purescript, typescript
- Language: PureScript
- Homepage: https://aeria.land
- Size: 2.04 MB
- Stars: 14
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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
}
}
}
}
```