<xs:complexType name="InputSitePattern">
<xs:annotation>
<xs:documentation>Information on the number of cells on which to apply inputs. Currently only two, but could be expanded to include other scenarios, e.g. all cells in 3d region.</xs:documentation>
</xs:annotation>
<xs:choice>
<!-- Lots more scenarios could be described here... -->
<xs:element name="all_cells">
<xs:annotation>
<xs:documentation>Apply input on all cells in group</xs:documentation>
</xs:annotation>
<xs:complexType/>
</xs:element>
<xs:element name="percentage_cells">
<xs:annotation>
<xs:documentation>Apply input to a certain percentage of cells in a group</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="percentage" type="meta:Percentage"/>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType> |