This repository has been archived on 2026-06-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spellsaurus/models/SchoolValidation.js

12 lines
305 B
JavaScript

const School = {
"id": "/SchoolModel",
"type": Object,
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"id_meta_school": { "type": "number" },
},
"required": ["name", "description", "id_meta_school"]
}
module.exports = School