source: cats/SCHEMAcat/trunk/data/schemata/s5/files/avatech-timeseries.xsd @ 4558

Last change on this file since 4558 was 4558, checked in by andmor, 10 years ago

Schema folders are now named by their ID instead of 'name+verison' pair.
This makes it easier to change the name of a schema without having to rename its folder.

File size: 675 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
3  <xs:element name="TIMESERIES">
4    <xs:complexType>
5      <xs:sequence>
6        <xs:element maxOccurs="unbounded" ref="i"/>
7      </xs:sequence>
8      <xs:attribute name="columns" use="required" type="xs:string"/>
9    </xs:complexType>
10  </xs:element>
11  <xs:element name="i">
12    <xs:complexType>
13      <xs:sequence>
14        <xs:element maxOccurs="unbounded" ref="v"/>
15      </xs:sequence>
16      <xs:attribute name="t" use="required" type="xs:decimal"/>
17    </xs:complexType>
18  </xs:element>
19  <xs:element name="v" type="xs:string"/>
20</xs:schema>
Note: See TracBrowser for help on using the repository browser.