Merge changes I442a0ee9,I11825b90
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / resources / people.yang
1 module people {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test:people";
4     prefix "people";
5
6     revision "2014-03-13" {
7         description "Initial revision.";
8     }
9
10     container people {
11         list person {
12             key name;
13             leaf name {
14                 type string;
15             }
16
17             leaf age {
18                 type uint32;
19             }
20         }
21     }
22 }