数据与xml架构和csv之间的架构不匹配

时间:2015-07-27 20:13:25

标签: xml csv

我有

的架构
<schema>
<entities>
    <entity name="Organization" create="" update="">
        <attributes>
            <attribute name="#vendorId" />
            <attribute name="taxId" />
            <attribute name="legalName" />
            <attribute name="contractNumber" />
            <attribute name="#organizationType.code" />
            <attribute name="legalStatus" />
        </attributes>
    </entity>
    <entity name="Organization.addresses" create="" update="">
        <attributes>    
            <attribute name="?vendorId" />  
            <attribute name="#addressType.code" />  
            <attribute name="line1" />  
            <attribute name="line2" />  
            <attribute name="city" />   
            <attribute name="state" />  
            <attribute name="zip" />                            
        </attributes>
    </entity>
</entities>
</schema>

我的csv文件说

#vendorId,taxId,legalName,contractNumber,#organizationType.code,legalStatus,#addressType.code,?vendorId,line1,line2,city,state,zip
1,2,Legal Name,12345,3,Pending,business,1,123 fake street,home,fakeville,nb,e2e1j4

我使用它的软件抛出错误

Error : Schema and Data does not match

我之前没有使用过xml和csv,所以我不确定我的错误在哪里。任何帮助表示赞赏。

使用的工具是ELM Solutions Passport

0 个答案:

没有答案