Watch window file format
- Last UpdatedJun 19, 2024
- 1 minute read
The watch window file that you have saved uses XML file format. The XML schema is:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="InTouchTagViewer">
<xs:complexType>
<xs:sequence>
<xs:element name="Watch" minOccurs="1" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="ReferenceString" type="xs:string" minOccurs="0" maxOccurs="unbounded"></xs:element>
<xs:element name="Separator" minOccurs="0" maxOccurs="unbounded"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>