User Tools

Site Tools


en:jobdata:version010603:simpletypes:framematerials

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:jobdata:version010603:simpletypes:framematerials [2017/03/29 13:52] larabernauen:jobdata:version010603:simpletypes:framematerials [2017/06/19 18:16] (current) sebastianraring
Line 1: Line 1:
 +====== material (FrameMaterials) ======
 +
 +[[en:jobdata:version010603:structure|b2bOpticJobData]] -> [[en:jobdata:version010603:structure|items]] -> [[en:jobdata:version010603:complextypes:item|item]] -> [[en:jobdata:version010603:complextypes:pair|pair]] -> [[en:jobdata:version010603:complextypes:frame|frame]]
 +
 +^ values ^ description ^
 +| METAL | metal frame |
 +| PLASTIC | plastic frame |
 +| OPTYL | optyl frame |
 +| NYLOR | nylor frame |
 +| DRILLED | frame with drilled holes |
 +| SPECIAL | all other frame types |
 +
 +<code xml>
 +<xs:simpleType name="FrameMaterials">
 +  <xs:restriction base="xs:string">
 +    <xs:enumeration value="METAL" />
 +    <xs:enumeration value="PLASTIC" />
 +    <xs:enumeration value="OPTYL" />
 +    <xs:enumeration value="NYLOR" />
 +    <xs:enumeration value="DRILLED" />
 +    <xs:enumeration value="SPECIAL" />
 +  </xs:restriction>
 +</xs:simpleType>
 +</code>