4 "$schema": "http://json-schema.org/draft-04/schema#",
10 "street_address": { "type": "string" },
11 "city": { "type": "string" },
12 "state": { "type": "string" }
14 "required": ["street_address", "city", "state"]
21 "billing_address": { "$ref": "#/definitions/address" },
24 { "$ref": "#/definitions/address" },
26 { "type": { "enum": [ "residential", "business" ] } },