This topic has not yet been rated - Rate this topic

5.2 DataBinding Schema

SharePoint

<xsd:schema id="DataBinding">
  <xsd:complexType name="CT_PrimaryKeyValue">
    <xsd:attribute name="Value" type="xsd:string"/>
  </xsd:complexType>
  <xsd:complexType name="CT_PrimaryKeyValues">
    <xsd:sequence>
      <xsd:element name="PrimaryKey" minOccurs="1" maxOccurs="unbounded" type="CT_PrimaryKeyValue"/>
    </xsd:sequence>
  </xsd:complexType>
  <xsd:complexType name="CT_Binding">
    <xsd:sequence>
      <xsd:element name="PrimaryKeys" minOccurs="0" maxOccurs="1" type="CT_PrimaryKeyValues"/>
    </xsd:sequence>
    <xsd:attribute name="BindingID" type="xsd:integer"/>
    <xsd:attribute name="Row" type="xsd:integer" use="optional"/>
  </xsd:complexType>
  <xsd:complexType name="CT_Bindings">
    <xsd:sequence>
      <xsd:element name="Binding" minOccurs="1" maxOccurs="unbounded" type="CT_Binding"/>
    </xsd:sequence>
  </xsd:complexType>
  <xsd:complexType name="CT_BindingConnection">
    <xsd:sequence>
      <xsd:element name="Bindings" minOccurs="1" maxOccurs="1" type="CT_Bindings"/>
    </xsd:sequence>
    <xsd:attribute name="RecordsetID" type="xsd:unsignedLong"/>
  </xsd:complexType>
  <xsd:complexType name="CT_BindingConnections">
    <xsd:sequence>
      <xsd:element name="BindingConnection" minOccurs="0" maxOccurs="unbounded" type="CT_BindingConnection"/>
    </xsd:sequence>
  </xsd:complexType>
  <xsd:element name="BindingConnections" type="CT_BindingConnections"/>
</xsd:schema>
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.