Bug 706: - Missing support for anyxml statement in java generator and mapping service
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / anyxml / test-anyxml.yang
1 module test-anyxml {
2     yang-version 1;
3
4     namespace "urn:test:simple:test:anyxml";
5     prefix test;
6     organization "test.org";
7     revision "2017-06-07";
8
9     container *my-cont {
10       container my-inner-cont {
11         leaf my-leaf {
12           type string;
13         }
14
15         anyxml inner-anyxml {
16           description "I am data schema node anyxml";
17         }
18       }
19     }
20
21     anyxml root-anyxml {
22        description "I am root anyxml";
23     }
24 }