Standard XML Sample File and XSD Schema
See http://www.instorecard.com/schema/v1/docs/RetailStore/ for a detailed description of this schema.
A sample of a product file in
A sample of the store file in flat file format is provided in Flat File Formats and Examples.
Here is another sample of an XML file in an acceptable
<?xml version="1.0" encoding="UTF-8" ?> <RetailStore xmlns= "http://www.instorecard.com/schema/v1/RetailIntegration/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.instorecard.com/schema/v1/ RetailIntegration/ http://www.instorecard.com/schema/v1/RetailIntegration/RetailStore.xsd"> <Store> <StoreID>S101</StoreID> <StoreName>SF Store #1</StoreName> <StoreAddress> <AddressLine1>123 Main Street</AddressLine1> <AddressLine2>Suite 100</AddressLine2> <City>San Francisco</City> <State>CA</State> <PostalCode>94104</PostalCode> </StoreAddress> <StorePhoneNumber>415-245-1234</StorePhoneNumber> </Store> </RetailStore>