Input

Description of a single electrical input to a number of cells

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
name xs:string required

Used By

Element Inputs/input

Source

<xs:complexType name="Input">
  <xs:annotation>
    <xs:documentation>Description of a single electrical input to a number of cells</xs:documentation>
  </xs:annotation>
  <xs:sequence>
    <xs:group ref="meta:metadata"/>
    <xs:choice>
      <xs:annotation>
        <xs:documentation>Currently either a pulse input or a random spiking input are allowed</xs:documentation>
      </xs:annotation>
      <xs:element name="pulse_input" type="PulseInput"/>
      <xs:element name="random_stim" type="RandomStim"/>
    </xs:choice>
    <xs:element name="target" type="InputTarget"/>
  </xs:sequence>
  <xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>