tsd:standard

Purpose This element specifies that a standard index should be generated for the current schema element. Depending on whether a child element is present, an advanced index (multi-path or compound index or a combination of these) or a simple index is created.
Parent element tsd:index
Child elements

tsd:refers, tsd:multiPath, tsd:field

Caution:
The order of the tsd:field elements determines the order of the values that comprise the index entry.

Attributes None
Type Empty

Example

This example illustrates the definition of a standard index in TSD:

        <xs:element name = "lastname" type = "xs:string">
          <xs:annotation>
            <xs:appinfo>
              <tsd:elementInfo>
                <tsd:physical>
                  <tsd:native>
                    <tsd:index>
                      <tsd:standard/>
                    </tsd:index>
                  </tsd:native>
                </tsd:physical>
              </tsd:elementInfo>
            </xs:appinfo>
          </xs:annotation>
        </xs:element>

See also tsd:index and tsd:field.