blob: 2089b25fd3b38c892896cb4fdbb275f38821e0ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
<start>
<ref name="element-pacemakerd-health"/>
</start>
<define name="element-pacemakerd-health">
<element name="pacemakerd">
<optional>
<attribute name="sys_from"> <text /> </attribute>
</optional>
<attribute name="state"> <text /> </attribute>
<optional>
<attribute name="last_updated"> <text /> </attribute>
</optional>
</element>
</define>
</grammar>
|