User Tools

Site Tools


en:lensorder:version010603:complextypes:productcatalog

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
en:lensorder:version010603:complextypes:productcatalog [2017/03/08 15:23] larabernauen:lensorder:version010603:complextypes:productcatalog [2017/06/16 17:22] (current) sebastianraring
Line 1: Line 1:
 +====== productCatalog (ProductCatalog) ======
  
 +[[en:lensorder:version010603:structure|b2boptic]] -> [[en:lensorder:version010603:complextypes:header|header]] -> productCatalog
 +
 +{{:en:lensorder:version010603:images:productcatalog.png?nolink|ProductCatalog}}
 +
 +^ name ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ description | only one of the following values are allowed |
 +
 +^ values ^ description ^
 +| czv | internal catalog format of Zeiss |
 +| sf4 | SF4 lens catalog |
 +| sf6 | B2BOptic LensCatalog 6 (SF6) |
 +| optimeyes | catalog format of EDI optique (France) |
 +| euronet | catalog format of Euronet |
 +
 +^ release ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ description | sf6: the UID-manufacturer from head.dat |
 +
 +<code xml>
 +<xs:complexType name="ProductCatalog">
 +  <xs:sequence>
 +    <xs:element name="name">
 +      <xs:simpleType>
 +        <xs:restriction base="xs:string">
 +          <xs:enumeration value="czv"/>
 +          <xs:enumeration value="sf4"/>
 +          <xs:enumeration value="sf6"/>
 +          <xs:enumeration value="optimeyes"/>
 +          <xs:enumeration value="euronet"/>
 +        </xs:restriction>
 +      </xs:simpleType>
 +    </xs:element>
 +    <xs:element name="release" type="xs:string"/>
 +  </xs:sequence>
 +</xs:complexType>
 +</code>