{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.bolt.com/schemas/address-reference-partial", "title": "Partial Address Reference", "type": "object", "required": [ ".tag", "postal_code" ], "properties": { ".tag": { "type": "string", "enum": [ "partial" ], "description": "The type of address reference", "example": "partial", "x-order": 0 }, "postal_code": { "type": "string", "description": "The postal code associated with the credit card billing address.", "example": "94105", "x-order": 1 } } }