@wmfs/tymly
Version:
A framework for building and sharing workflows in Node.js
40 lines • 661 B
JSON
{
"id": "people",
"title": "People",
"description": "Isn't this just a list of people?",
"primaryKey": [
"employeeNo"
],
"type": "object",
"properties": {
"employeeNo": {
"type": "string"
},
"firstName": {
"type": "string",
"description": "Person's first name"
},
"lastName": {
"type": "string"
},
"age": {
"description": "Age in years",
"type": "integer",
"minimum": 0
}
},
"indexes": [
{
"columns": [
"firstName",
"lastName"
],
"unique": true
}
],
"required": [
"firstName",
"lastName"
],
"audit": false
}