User Tools

Site Tools


en:jobdata:version010604: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:version010604:simpletypes:framematerials [2020/10/27 09:59] hansobermayeren:jobdata:version010604:simpletypes:framematerials [2020/11/09 17:04] (current) hansobermayer
Line 1: Line 1:
 +====== material (FrameMaterials) ======
  
 +[[en:jobdata:version010604:structure|b2bOpticJobData]] -> [[en:jobdata:version010604:structure|items]] -> [[en:jobdata:version010604:complextypes:item|item]] -> [[en:jobdata:version010604:complextypes:pair|pair]] -> [[en:jobdata:version010604:complextypes:frame|frame]]
 +
 +^ values ^ description ^
 +| METAL | metal frame |
 +| PLASTIC | plastic frame |
 +| OPTYL | optyl frame |
 +| NYLOR | nylor frame |
 +| DRILLED | frame with drilled holes |
 +| ISNEWLO010604 ORGANICMATERIALS | organic material e.g. wood, horn |  
 +| ISNEWLO010604 TITAN | Titan |
 +| 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="ORGANICMATERIALS" />
 +    <xs:enumeration value="TITAN" />        
 +    <xs:enumeration value="SPECIAL" />
 +  </xs:restriction>
 +</xs:simpleType>
 +</code>
 +
 +//ISNEWLO010604