Description Schema
Property Element
Description
The property name, value, and whether the value is a regular expression.
Namespace(none)
Diagram
Property Element
Overview
Property 0..∞
The property name, value, and whether the value is a regular expression.
name required xs:string
Property name
value required xs:anySimpleType
Property value
regExp optional xs:boolean
Indicates whether the property value is a regular expression. Default is false.
Attributes
NameTypeUseDefaultFixedDescription
namexs:stringrequired  Property name
valuexs:anySimpleTyperequired  Property value
regExpxs:booleanoptional  Indicates whether the property value is a regular expression. Default is false.
Source
<xs:element name="Property" minOccurs="0" maxOccurs="unbounded" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>The property name, value, and whether the value is a regular expression.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>Property name</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="value" type="xs:anySimpleType" use="required">
      <xs:annotation>
        <xs:documentation>Property value</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="regExp" type="xs:boolean" use="optional">
      <xs:annotation>
        <xs:documentation>Indicates whether the property value is a regular expression. Default is false.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
See Also