@tradle/models
Version:
models for tradle apps
36 lines (35 loc) • 561 B
JSON
{
"id": "tradle.ProductApplication",
"title": "Product Application",
"interfaces": [
"tradle.Context"
],
"type": "tradle.Model",
"properties": {
"product": {
"type": "string",
"displayName": true
},
"time": {
"type": "date",
"readOnly": true
},
"session": {
"type": "string"
},
"welcome": {
"type": "boolean",
"readOnly": true
},
"contextId": {
"type": "string"
}
},
"viewCols": [
"product"
],
"required": [
"product",
"contextId"
]
}