{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InventoryNotificationsSettings", "title": "InventoryNotificationsSettings", "type": "object", "x-tags": [ "Models" ], "properties": { "low_stock_notification_address": { "type": "array", "items": { "type": "string", "example": "test.user@example.com" } }, "out_of_stock_notification_address": { "type": "array", "items": { "type": "string", "example": "test.user@example.com" } } }, "x-examples": { "example-1": { "low_stock_notification_address": [ "test.user@example.com" ], "out_of_stock_notification_address": [ "test.user@example.com" ] } } }