{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StoreProfile", "title": "Store Profile", "description": "The basic profile settings for a store, used to give the shopper information about the business from which they are purchasing.", "type": "object", "x-internal": false, "properties": { "store_address": { "type": "string" }, "store_address_type": { "$ref": "#/components/schemas/AddressTypeEnumValues" }, "store_email": { "type": "string" }, "store_name": { "type": "string" }, "store_phone": { "type": "string" } } }