@tradle/models
Version:
models for tradle apps
41 lines (40 loc) • 781 B
JSON
{
"id": "tradle.Contract",
"type": "tradle.Model",
"title": "Contract",
"properties": {
"contractType": {
"type": "object",
"ref": "tradle.TypeOfContract",
"displayName": true
},
"contractText": {
"type": "string",
"skipLabel": true,
"markdown": true
},
"current": {
"type": "boolean",
"description": "The one that is current will be used for the set contract type"
},
"contract_group": {
"type": "string",
"title": "Company Information",
"list": [
"contractType",
"contractText",
"current"
]
}
},
"required": [
"contractType",
"contractText"
],
"viewCols": [
"contract_group"
],
"editCols": [
"contract_group"
]
}