Recursion in an XML schema?

后端 未结 3 1872
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-29 02:28

I need to create an XML schema that validates a tree structure of an XML document. I don\'t know exactly the occurrences or depth level of the tree.

XML example:

3条回答
  •  春和景丽
    2020-11-29 03:22

    XSD does indeed allow for recursion of elements. Here is a sample for you

    
      
        
          
          
          
        
      
    
    

    As you can see the section element contains a child element that is of type section.

提交回复
热议问题