@tradle/models
Version:
models for tradle apps
37 lines (36 loc) • 620 B
JSON
{
"id": "tradle.FullAddress",
"type": "tradle.Model",
"title": "Full Address",
"isInterface": true,
"properties": {
"street": {
"type": "string"
},
"number": {
"type": "string"
},
"neighborhood": {
"type": "string"
},
"borough": {
"type": "string"
},
"city": {
"type": "string",
"title": "city / town"
},
"country": {
"type": "object",
"ref": "tradle.Country"
},
"state": {
"type": "object",
"ref": "tradle.Jurisdiction"
},
"zip": {
"type": "string",
"title": "ZIP"
}
}
}