{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/marketing-store-list-item-schema.json", "title": "StoreListItem", "description": "Store id and name", "type": "object", "properties": { "StoreId": { "format": "int32", "description": "Store Id", "type": "integer", "example": 500123 }, "StoreName": { "description": "Store Name", "type": "string", "example": "Example Name" }, "StoreGroupId": { "format": "int32", "description": "Store Group Id", "type": "integer", "example": 500123 }, "StoreGroupName": { "description": "Store Group Name", "type": "string", "example": "Example Name" }, "HasLoyaltyCampaign": { "description": "Store has loyalty campaign", "type": "boolean", "example": true }, "HasRetentionCampaign": { "description": "Store has retention campaign", "type": "boolean", "example": true }, "IsPublished": { "description": "Is Published store", "type": "boolean", "example": true } } }