File: module-a.yang

package info (click to toggle)
libnetconf2 4.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,612 kB
  • sloc: ansic: 37,068; xml: 437; sh: 49; makefile: 20
file content (23 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module module-a {

    namespace "urn:jmu:params:xml:ns:yang:module-a";
    prefix a;
    
    description "This is a simple user module";
    
    container top {
    
        leaf name {
            type string;
        }    
    
        leaf type {
            type string;
        }    
        
        leaf hidden {
            type boolean;
        }
        
    }
}