@windingtree/wt-write-api
Version:
API to write data to the Winding Tree platform
48 lines • 908 B
JSON
{
"description": "Entity's postal address as registered with the authorities",
"title": "Postal address",
"type": "object",
"required": [
"road",
"houseNumber",
"city",
"countryCode"
],
"properties": {
"houseNumber": {
"type": "string",
"maxLength": 150
},
"road": {
"type": "string",
"maxLength": 150
},
"city": {
"type": "string",
"maxLength": 150
},
"county": {
"type": "string",
"maxLength": 150
},
"stateDistrict": {
"type": "string",
"maxLength": 150
},
"state": {
"type": "string",
"maxLength": 150
},
"postcode": {
"type": "string",
"maxLength": 13
},
"countryCode": {
"type": "string",
"maxLength": 2,
"minLength": 2,
"description": "ISO 3166-1 alpha-2 codes",
"format": "country-code"
}
}
}