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

https://github.com/khalyomede/rs-json

Standard proposal for JSON based ORM relational schema definitions.
https://github.com/khalyomede/rs-json

database definition json json-schema migrations orm relational-databases relational-model schema standard

Last synced: 4 months ago
JSON representation

Standard proposal for JSON based ORM relational schema definitions.

Awesome Lists containing this project

README

        

# RS/JSON

![](https://img.shields.io/github/tag/khalyomede/rs-json.svg)
![](https://img.shields.io/github/license/khalyomede/rs-json.svg)

Standard proposal for JSON based ORM relational schema definitions.

```json
{
"version": "0.1.0",
"licence": "MIT",
"book": {
"properties": {
"id": {
"type": "unsigned-int",
"incremented": true
},
"name": {
"type": "string",
"length": 255,
"required": true
}
}
}
}
```

Documentation available at this address: [https://khalyomede.github.io/rs-json/](https://khalyomede.github.io/rs-json/)