https://github.com/totaltechgeek/otter-json-schema
A joi-like tool for generating json-schema
https://github.com/totaltechgeek/otter-json-schema
Last synced: 8 months ago
JSON representation
A joi-like tool for generating json-schema
- Host: GitHub
- URL: https://github.com/totaltechgeek/otter-json-schema
- Owner: TotalTechGeek
- License: mit
- Created: 2021-06-12T01:18:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-14T22:22:11.000Z (about 5 years ago)
- Last Synced: 2025-03-18T10:57:32.189Z (over 1 year ago)
- Language: JavaScript
- Size: 81.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# otter-json-schema
This module is designed to generate JSON Schema from a syntax very similar to joi.
```js
const Schema = require('otter-json-schema')
const schema = Schema.object({
a: Schema.number().min(5).max(10),
b: Schema.number()
}).toJSON()
```
### Todo
- Documentation