Blame view

config/xsd/parser/functions.xsd 1.87 KB
0d5a1aa5   Benjamin Renard   Parser: add a fun...
1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="functions">
    <xs:complexType>
      <xs:sequence minOccurs="0" maxOccurs="unbounded">
        <xs:element name="function">
          <xs:complexType>
            <xs:all>
66aeb1bf   Benjamin Renard   First step to sup...
9
10
11
12
13
14
15
16
17
              <xs:element name="prompts" minOccurs="0" maxOccurs="1">
                <xs:complexType>
                  <xs:sequence>
                    <xs:element name="prompt" minOccurs="0" maxOccurs="unbounded">
                      <xs:complexType>
                        <xs:simpleContent>
                          <xs:extension base="xs:string">
                            <xs:attribute name="type" type="xs:string" use="optional"/>
                            <xs:attribute name="subtype" type="xs:string" use="optional"/>
ea6be348   Benjamin Renard   Support arguments...
18
                            <xs:attribute name="default" type="xs:string" use="optional"/>
66aeb1bf   Benjamin Renard   First step to sup...
19
20
21
22
23
24
25
                          </xs:extension>
                        </xs:simpleContent>
                      </xs:complexType>
                    </xs:element>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
097dfbf9   Elena.Budnik   rm 8444 +
26
              <xs:element name="prompt_param" type="xs:string" minOccurs="0" maxOccurs="1"/>
8289dfc4   Hacene SI HADJ MOHAND   adding default ar...
27
              <xs:element name="default_args" type="xs:string" minOccurs="0" maxOccurs="1"/>
0d5a1aa5   Benjamin Renard   Parser: add a fun...
28
29
30
31
32
33
              <xs:element name="info_brief" type="xs:string"/>
              <xs:element name="new_kernel" type="xs:string"/>
            </xs:all>
            <xs:attribute name="name" type="xs:string"/>
            <xs:attribute name="args" type="xs:int"/>
            <xs:attribute name="kind" type="xs:string"/>
ce7f76cd   Elena.Budnik   group in functions
34
            <xs:attribute name="group" type="xs:string"/>
0d5a1aa5   Benjamin Renard   Parser: add a fun...
35
36
37
38
39
40
41
          </xs:complexType>
        </xs:element>
      </xs:sequence>
      <xs:attribute name="id" type="xs:ID" use="required" />
    </xs:complexType>
  </xs:element>
</xs:schema>