summaryrefslogtreecommitdiffstats
path: root/restconf-client/provider/src/test/resources/yang/identity-types-second.yang
blob: 98d6a6e60f133ae09549db47dce80130a6389ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module identity-types-second {
    yang-version 1;
    namespace "identity:list:second:ns:test:json:ser";
    prefix "sec";

    import identity-types {
        prefix "type";
    }

    revision "2013-07-15";

    identity virtual {
        base type:int-type;
    }

    identity Ethernet {
        base type:physical;
    }

    identity iden1;

    identity iden2 {
        base iden1;
    }
}