File: Classification.xsd

package info (click to toggle)
camitk 6.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 389,496 kB
  • sloc: cpp: 103,476; sh: 2,448; python: 1,618; xml: 984; makefile: 128; perl: 84; sed: 20
file content (16 lines) | stat: -rw-r--r-- 708 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns="http://camitk.imag.fr/cepcoreschema"
            targetNamespace="http://camitk.imag.fr/cepcoreschema"
            elementFormDefault="qualified"
>

    <xsd:include schemaLocation="ItkFilter.xsd"/>
    <xsd:complexType name="Classification">
        <xsd:sequence>
            <xsd:element name="family"        type="xsd:string"/>
            <xsd:element name="tag"           type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
            <xsd:element name="itkFilter"     type="ItkFilter"  minOccurs = "0" maxOccurs = "1"/>
        </xsd:sequence>
    </xsd:complexType>
</xsd:schema>