@wmfs/tymly-pg-plugin
Version:
Replace Tymly's out-the-box memory storage with PostgreSQL
39 lines • 738 B
JSON
{
"title": "Animals",
"description": "Isn't this just a list of animals?",
"primaryKey": [
"animal"
],
"type": "object",
"properties": {
"animal": {
"type": "string",
"description": "What type of animal is this?"
},
"colour": {
"type": "string",
"description": "What colour is this animal?"
},
"yearBorn": {
"description": "What year was this animal born?",
"type": "integer",
"minimum": 0
},
"originHashSum": {
"type": "string",
"description": "Hash assigned to row in animals"
}
},
"indexes": [
{
"columns": [
"animal"
],
"unique": true
}
],
"required": [
"animal"
],
"audit": false
}