Relax NG schema for XML validation

This commit is contained in:
ebeshero 2023-03-25 20:00:24 -04:00
parent 34841f6e9d
commit b5239ab4d0

6
schema.rnc Normal file
View File

@ -0,0 +1,6 @@
start = xml
xml = element xml {p+}
p = element p {mixed{(special | info)*}}
special = element special {text}
info = element info {type, text}
type = attribute type {"Message-ID"}