@wmfs/tymly
Version:
A framework for building and sharing workflows in Node.js
29 lines (28 loc) • 450 B
JSON
{
"name": "cat",
"version": "1.0",
"plural": "cats",
"primaryKey": [
"name",
"id"
],
"description": "Model for storing cat details",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "An identifier"
},
"name": {
"type": "string",
"description": "The cat's name."
},
"comment": {
"type": "string"
}
},
"required": [
"name",
"id"
]
}