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/School.js
2020-05-16 14:57:17 +02:00

12 lines
284 B
JavaScript

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