@tradle/models
Version:
models for tradle apps
38 lines • 624 B
JSON
{
"id": "tradle.NotificationStatus",
"title": "Notification Status",
"subClassOf": "tradle.Enum",
"type": "tradle.Model",
"properties": {
"status": {
"displayName": true,
"type": "string"
}
},
"enum": [
{
"id": "notified",
"title": "Notified"
},
{
"id": "completed",
"title": "Completed"
},
{
"id": "started",
"title": "Started"
},
{
"id": "abandoned",
"title": "Abandoned"
},
{
"id": "stopped",
"title": "Stopped"
},
{
"id": "inProgress",
"title": "In Progress"
}
]
}