{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PickupStoreInfo1", "title": "PickupStoreInfo1", "required": [ "isPickupStore", "storeId", "friendlyName", "address", "additionalInfo", "dockId" ], "type": "object", "properties": { "isPickupStore": { "type": "boolean" }, "storeId": { "type": "string", "nullable": true }, "friendlyName": { "type": "string", "nullable": true }, "address": { "type": "string", "nullable": true }, "additionalInfo": { "type": "string", "nullable": true }, "dockId": { "type": "string", "nullable": true } }, "example": { "isPickupStore": false, "storeId": null, "friendlyName": null, "address": null, "additionalInfo": null, "dockId": null } }