-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathautomation.xsd
25 lines (25 loc) · 1.04 KB
/
automation.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation source="https://aeon-php.org/docs/">
This Schema file defines the rules by which the XML configuration file of Aeon Automation Configuration may be structured.
</xs:documentation>
<xs:appinfo source="https://aeon-php.org/"/>
</xs:annotation>
<xs:element name="aeon" type="aeonType">
<xs:annotation>
<xs:documentation>Root Element</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="aeonType">
<xs:annotation>
<xs:documentation>The main type specifying the document structure</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="project" type="projectType" maxOccurs="1" minOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="projectType">
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:complexType>
</xs:schema>