{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "practitionerAddress",
"required": [
"address_line_1"
],
"properties": {
"address_line_1": {
"type": "string",
"description": "The first line of the address."
},
"address_line_2": {
"type": "string",
"description": "The second line of the address."
},
"locality": {
"type": "string",
"description": "The locality. For example London."
},
"region": {
"type": "string",
"description": "The region. For example Surrey."
},
"postal_code": {
"type": "string",
"description": "The postal code. For example CF14 3UZ."
},
"country": {
"type": "string",
"description": "The country."
}
}
}