test.yang 594 Bytes
module test {  
    namespace "xpath:intra:single";  
    prefix test ;  
    
    import test2 {
       prefix test2;
    }
   
    include test1;

    organization "";  
    contact "";  
       
    description   
        "Defines basic service types for L3VPN service.";  
       
    revision "2015-12-16" {  
        reference "";  
    }

    augment /test2:cont1/test2:cont2/cont2 {
       leaf leaf {
          type int32;
       }
       uses group1; 
    }

    augment /test2:cont1/test2:cont2/cont2/cont1/cont2 {
          leaf leaf1 {
          type int32;
       }
    } 
}