<fsConstraints>

<fsConstraints> (feature-structure constraints) specifies constraints on the content of valid feature structures. [18.11 Feature System Declaration]
Module iso-fs — Feature Structures
Attributes
Contained by
iso-fs: fsDecl
May contain
iso-fs: bicond cond
Note

May contain a series of conditional or biconditional elements.

Example
<fsConstraints>
 <cond>
  <fs>
<!-- ...-->
  </fs>
  <then/>
  <fs>
<!-- ... -->
  </fs>
 </cond>
</fsConstraints>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <elementRef key="cond"/>
  <elementRef key="bicond"/>
 </alternate>
</content>
Schema Declaration
<rng:element name="fsConstraints">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="cond"/>
   <rng:ref name="bicond"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element fsConstraints
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   ( cond | bicond )*
}