@tradle/models
Version:
models for tradle apps
67 lines (66 loc) • 1.22 kB
JSON
{
"id": "tradle.Check",
"type": "tradle.Model",
"title": "Check",
"abstract": true,
"properties": {
"provider": {
"type": "string",
"readOnly": true
},
"status": {
"type": "object",
"ref": "tradle.Status",
"readOnly": true
},
"message": {
"type": "string",
"displayName": true,
"readOnly": true
},
"form": {
"type": "object",
"ref": "tradle.Form"
},
"resultDetails": {
"type": "string"
},
"application": {
"type": "object",
"ref": "tradle.Application"
},
"top": {
"type": "object",
"ref": "tradle.Application"
},
"aspects": {
"type": "string"
},
"isInactive": {
"type": "boolean"
},
"providerReferenceNumber": {
"type": "string"
},
"previousCheck": {
"type": "object",
"ref": "tradle.Check",
"readOnly": true
},
"nextCheck": {
"type": "object",
"ref": "tradle.Check",
"readOnly": true
},
"checkOverride": {
"type": "array",
"items": {
"ref": "tradle.CheckOverride",
"backlink": "check"
}
}
},
"required": [
"provider"
]
}