2.2.4.38 Point

Namespace: http://schemas.datacontract.org/2004/07/p

The Point complex type specifies a two dimensional point.

 <xs:complexType name="Point" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <xs:sequence>
     <xs:element minOccurs="0" name="X" type="xs:int"/>
     <xs:element minOccurs="0" name="Y" type="xs:int"/>
   </xs:sequence>
 </xs:complexType>

X: An int ([XMLSCHEMA2] section 3.3.17) that specifies the x coordinate. This element MUST be present.

Y: An int that specifies the y coordinate. This element MUST be present.