faster-auto
Version:
A fast and lightweight framework for building RESTful APIs with Sequelize and Node.js. Supports automatic model loading, flexible query APIs, and built-in Swagger documentation.
26 lines • 394 B
JSON
{
"title": "Class",
"type": "object",
"properties": {
"id": {
"type": "string",
"x-primaryKey": true,
"x-autoIncrement": true,
"x-snowflake": true
},
"age": {
"type": "string"
},
"name": {
"type": "string"
},
"subject": {
"type": "string",
"default": "Math"
}
},
"required": [
"name",
"age"
]
}