test.yang 666 Bytes
module test {  
    namespace "xpath:intra:single";  
    prefix test ;  
      
    organization "";  
    contact "";  
       
    description   
        "Defines basic service types for L3VPN service.";  
       
    revision "2015-12-16" {  
        reference "";  
    }  

    grouping group1 {
        container cont1 {
           leaf leaf1 {
             type int32;
           }
           container cont3 {
               leaf leaf1 {
                 type int32;
              }
           }
        }
    }

    container cont2 {
         uses group1;
    }

    augment /cont2/cont1/cont3 {
       leaf a {
          type int32;
       }
    }
}