1 # XML RELAX NG schema for Subversion command-line client output
8 lists = element lists { \list+ }
10 ## A target to the list command.
11 \list = element list { attlist.list, entry* }
13 ## Local path or repository URL.
14 attribute path { target.type }
17 entry = element entry { attlist.entry, name, size?, commit, lock? }
19 ## The kind of the entry.
20 attribute kind { "dir" | "file" }
22 ## Name of the file or directory.
23 name = element name { string }
25 ## File size in bytes.
26 size = element size { xsd:nonNegativeInteger }