Commit 6a1c196c1516b53fbe241cccf0be46037eb728ff

Authored by Benjamin Renard
1 parent 6fc1d86b

Add missing file

Showing 1 changed file with 24 additions and 0 deletions   Show diff stats
config/SpiceKernel/config.xsd 0 → 100644
... ... @@ -0,0 +1,24 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  3 +
  4 + <xs:element name="spicekernelconfig">
  5 + <xs:complexType>
  6 + <xs:sequence>
  7 + <xs:element name="datafiles" type="dataFilesType" minOccurs="1" maxOccurs="1"></xs:element>
  8 + </xs:sequence>
  9 + </xs:complexType>
  10 + </xs:element>
  11 +
  12 + <xs:complexType name="dataFilesType">
  13 + <xs:sequence>
  14 + <xs:element name="datafile" type="dataFileType" minOccurs="0" maxOccurs="unbounded"></xs:element>
  15 + </xs:sequence>
  16 + <xs:attribute name="rootPath" type="xs:string" use="required" />
  17 + </xs:complexType>
  18 +
  19 + <xs:complexType name="dataFileType">
  20 + <xs:attribute name="bodyId" type="xs:string" use="required" />
  21 + <xs:attribute name="path" type="xs:string" use="required" />
  22 + </xs:complexType>
  23 +
  24 +</xs:schema>
0 25 \ No newline at end of file
... ...