@tradle/models
Version:
models for tradle apps
34 lines • 638 B
JSON
{
"id": "tradle.ResidentialStatus",
"title": "Residential Status",
"type": "tradle.Model",
"subClassOf": "tradle.Enum",
"properties": {
"status": {
"displayName": true,
"type": "string"
}
},
"enum": [
{
"id": "withMortgage",
"title": "Home owner (with mortgage)"
},
{
"id": "withoutMortgage",
"title": "Home owner (without mortgage)"
},
{
"id": "tenantP",
"title": "Tenant (private)"
},
{
"id": "tenantC",
"title": "Tenant (counsel)"
},
{
"id": "livingWithParents",
"title": "Living with parents"
}
]
}