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.
- Host: GitHub
- URL: https://github.com/khalyomede/rs-json
- Owner: khalyomede
- License: mit
- Created: 2019-01-09T21:48:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-04T20:24:00.000Z (over 6 years ago)
- Last Synced: 2025-03-15T03:47:38.893Z (4 months ago)
- Topics: database, definition, json, json-schema, migrations, orm, relational-databases, relational-model, schema, standard
- Homepage: https://khalyomede.github.io/rs-json/
- Size: 176 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RS/JSON

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/)