summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/datastore-and-scope-specification/opendaylight-inventory.yang
blob: e4247bee1e0065476838a02de82e9f5137d500a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module opendaylight-inventory {
    namespace "urn:opendaylight:inventory";
    prefix inv;

    revision "2013-08-19" {
        description "Initial revision of Inventory model";
    }
    
    
    container nodes {
        list node {
            key "id";
            leaf id {
                type string;
            }
        }
    }

}