{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AvsAddress", "title": "AvsAddress", "properties": { "streetAddress": { "description": "The street and house number of the address.\n\nExample: 1 Infinite Loop, Cupertino.", "type": "string" }, "zip": { "description": "The zip or post code of the address.\n\nExample: CA 95014", "type": "string" } }, "required": [ "streetAddress" ] }