aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/pnfsimulator/netopeer_tls_cfg/building.yang
blob: 9afe9721ecbaff5d69ee1465ad8fce2b05e582ce (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
26
module building {
  yang-version 1.1;
  namespace "urn:building:test";

  prefix bld;

  organization "building";
  contact "my buildig address";
  description "yang model for building";
  revision "2018-02-13"{
    description "initial version";
  }

  container rooms{
    list room{
      key room-number;
      leaf room-number{
        type uint16;
      }
      leaf size {
        type uint32;
      }
    }

  }
}