Type: address
Properties:
Property | Description | Type | Reference |
---|---|---|---|
city |
city (as part of an address) | string |
/address/city |
country |
country (ISO 3166-1 alpha-2 country code) | string |
/address/country |
house-number |
house number (as part of an address) | string |
/address/house-number |
postcode |
postal code (as part of an address) | string |
/address/postcode |
street |
street (as part of an address) | string |
/address/street |
Schema:
{
"$id": "https://ontology.riskine.com/address.json",
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "city (as part of an address)"
},
"country": {
"type": "string",
"description": "country (ISO 3166-1 alpha-2 country code)"
},
"house-number": {
"type": "string",
"description": "house number (as part of an address)"
},
"postcode": {
"type": "string",
"description": "postal code (as part of an address)"
},
"street": {
"type": "string",
"description": "street (as part of an address)"
}
}
}