Split out yang-data-tree-impl
[yangtools.git] / data / yang-data-tree-ri / src / test / resources / yt892 / test-bgp-types.yang
1 module test-bgp-types {
2     yang-version "1";
3     namespace "urn:opendaylight:params:xml:ns:yang:test:bgp:types";
4     prefix "bgp-types";
5
6     revision "2018-08-14";
7
8     typedef peer-type {
9         type enumeration {
10             enum INTERNAL {
11             }
12             enum EXTERNAL {
13             }
14         }
15     }
16
17     identity afi-safi-type {
18     }
19
20     identity IPV4-UNICAST {
21         base afi-safi-type;
22     }
23 }