@wmfs/tymly-etl-plugin
Version:
A collection of states for helping with Extract, Transform and Load tasks.
34 lines (31 loc) • 635 B
JSON
{
"id": "people",
"title": "People",
"description": "Isn't this just a list of people?",
"primaryKey": ["employeeNo"],
"type": "object",
"properties": {
"employeeNo": {
"type": "number"
},
"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"]
}