User Tools

Site Tools


en:lenscatalog:version070000:complextypes:b2bcatalogorderoptionrange

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:lenscatalog:version070000:complextypes:b2bcatalogorderoptionrange [2017/07/10 17:10] sebastianraringen:lenscatalog:version070000:complextypes:b2bcatalogorderoptionrange [2017/07/12 13:02] (current) hansobermayer
Line 1: Line 1:
 +======B2BCatalogOrderOptionRange======
 +
 +
 +{{en:lenscatalog:version070000:images:b2bcatalogorderoptionrange.png?nolink|B2BCatalogOrderOptionRange}}
 +
 +^from^^
 +^type |xs:decimal ^
 +^unit | like defined for the [[en:lenscatalog:version070000:simpletypes:b2bcatalogorderoptions|orderoption]]^
 +^occurs |1 ^
 +^description |Defines the smallest value that can be entered for the element of the orderOption ^
 +
 +^to^^
 +^type |xs:decimal ^
 +^unity | like defined for the [[en:lenscatalog:version070000:simpletypes:b2bcatalogorderoptions|orderoption]]^
 +^occurs |1 ^
 +^description |Defines the largest value that can be entered for the element of the orderOption ^
 +
 +^step^^
 +^type |xs:decimal ^
 +^unity | like defined for the [[en:lenscatalog:version070000:simpletypes:b2bcatalogorderoptions|orderoption]]^
 +^occurs |1 ^
 +^description |Defines the step value that can be entered for the element of the orderOption ^
 +
 +^recommended^^
 +^type |xs:decimal ^
 +^unity | like defined for the [[en:lenscatalog:version070000:simpletypes:b2bcatalogorderoptions|orderoption]]^
 +^occurs |0..1 ^
 +^description |Defines the recommended value that can be entered for the element of the orderOption^
 +
 +^numValues^^
 +^type |[[en:lenscatalog:version070000:complextypes:b2bcatalogorderoptionrangenumvalue|B2BCatalogOrderOptionRangeNumValue]] ^
 +^occurs |1 ^
 +^description |Defines the one ore more numeric values that can be entered for the element of the orderOption ^
 +
 +^recommendedNumValue^^
 +^type |xs:decimal ^
 +^unity | like defined for the [[en:lenscatalog:version070000:simpletypes:b2bcatalogorderoptions|orderoption]]^
 +^occurs |0..1 ^
 +^description |Defines the recommended numeric value that can be entered for the element of the orderOption^
 +
 +^textValues^^
 +^type |[[en:lenscatalog:version070000:complextypes:b2bcatalogorderoptionrangetextvalues|B2BCatalogOrderOptionRangeTextValues]] ^
 +^occurs |1 ^
 +^description |Defines the one ore more text values that can be entered for the element of the orderOption ^
 +
 +^recommendedTextValue^^
 +^type |xs:string ^
 +^occurs |0..1 ^
 +^description |Defines the recommended text values that can be entered for the element of the orderOption^
 +
 +<code xml>
 +<xs:complexType name="B2BCatalogOrderOptionRange">
 +  <xs:choice>
 +    <xs:sequence>
 +      <xs:element name="from" type="xs:decimal"/>
 +      <xs:element name="to" type="xs:decimal"/>
 +      <xs:element name="step" type="xs:decimal"/>
 +      <xs:element name="recommended" type="xs:decimal" minOccurs="0"/>
 +    </xs:sequence>
 +    <xs:sequence>
 +      <xs:element name="numValues" type="B2BCatalogOrderOptionRangeNumValue"/>
 +      <xs:element name="recommendedNumValue" type="xs:decimal" minOccurs="0"/>
 +    </xs:sequence>
 +    <xs:sequence>
 +      <xs:element name="textValues" type="B2BCatalogOrderOptionRangeTextValues"/>
 +      <xs:element name="recommendedTextValue" type="xs:string" minOccurs="0"/>
 +    </xs:sequence>
 +  </xs:choice>
 +</xs:complexType>
 +</code>