@tradle/models
Version:
models for tradle apps
34 lines • 600 B
JSON
{
"id": "tradle.MaritalStatus",
"title": "Marital Status",
"type": "tradle.Model",
"subClassOf": "tradle.Enum",
"properties": {
"status": {
"displayName": true,
"type": "string"
}
},
"enum": [
{
"id": "single",
"title": "Single"
},
{
"id": "married",
"title": "Married"
},
{
"id": "marriedPA",
"title": "Married with prenuptial agreement"
},
{
"id": "civil",
"title": "Civil partnership"
},
{
"id": "livingTogether",
"title": "Living together with agreement"
}
]
}