Skip to content

Commit

Permalink
Add relaxng schema for comment history xml response
Browse files Browse the repository at this point in the history
  • Loading branch information
krauselukas committed Mar 1, 2024
1 parent a76ba84 commit a886a0f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/api/api/comment_history.rng
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<element name="comment_history" xmlns="http://relaxng.org/ns/structure/1.0">
<attribute name="comment">
<data type="string"/>
</attribute>
<oneOrMore>
<element name="comment">
<attribute name="who">
<data type="string"/>
</attribute>
<attribute name="when">
<data type="string"/>
</attribute>
<attribute name="id">
<data type="string"/>
</attribute>
<text/>
</element>
</oneOrMore>
</element>

0 comments on commit a886a0f

Please sign in to comment.