-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.txt
More file actions
950 lines (919 loc) · 236 KB
/
Copy patherrors.txt
File metadata and controls
950 lines (919 loc) · 236 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
IETF errors:
(already existing)
ietf-ip@2014-06-16.yang
ietf-ipv4-unicast-routing@2016-11-04.yang
ietf-ipv6-router-advertisements@2016-11-04.yang
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ip@2014-06-16.yang:156: error: there is already a child node to "/if:interfaces/if:interface" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ip@2014-06-16.yang:149 with the name "ipv4" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ip@2018-02-22.yang:156
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ip@2014-06-16.yang:426: error: there is already a child node to "/if:interfaces-state/if:interface" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ip@2014-06-16.yang:422 with the name "ipv4" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ip@2018-02-22.yang:572
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipfix-psamp@2012-09-05.yang:259: warning: the escape sequence "\S" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipfix-psamp@2012-09-05.yang:279: warning: the escape sequence "\S" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:82: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:routes/rt:route" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:74 with the name "destination-prefix" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:260
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:98: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:routes/rt:route/rt:next-hop/rt:next-hop-options/rt:simple-next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:90 with the name "next-hop-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:277
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:116: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:routes/rt:route/rt:next-hop/rt:next-hop-options/rt:next-hop-list/rt:next-hop-list/rt:next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:107 with the name "address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:296
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:133: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:input" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:124 with the name "destination-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:314
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:150: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:output/rt:route" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:141 with the name "destination-prefix" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:332
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:168: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:output/rt:route/rt:next-hop/rt:next-hop-options/rt:simple-next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:159 with the name "next-hop-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:351
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:186: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:output/rt:route/rt:next-hop/rt:next-hop-options/rt:next-hop-list/rt:next-hop-list/rt:next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:177 with the name "next-hop-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:370
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:200: error: there is already a child node to "/rt:routing/rt:control-plane-protocols/rt:control-plane-protocol/rt:static-routes" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2016-11-04.yang:196 with the name "ipv4" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv4-unicast-routing@2018-03-13.yang:196
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-router-advertisements@2016-11-04.yang:77: error: there is already a child node to "/if:interfaces-state/if:interface/ip:ipv6" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-router-advertisements@2016-11-04.yang:73 with the name "ipv6-router-advertisements" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-router-advertisements@2018-03-13.yang:341
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-router-advertisements@2016-11-04.yang:227: error: there is already a child node to "/if:interfaces/if:interface/ip:ipv6" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-router-advertisements@2016-11-04.yang:223 with the name "ipv6-router-advertisements" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-router-advertisements@2018-03-13.yang:82
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:87: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:routes/rt:route" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:79 with the name "destination-prefix" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:270
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:103: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:routes/rt:route/rt:next-hop/rt:next-hop-options/rt:simple-next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:95 with the name "next-hop-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:287
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:121: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:routes/rt:route/rt:next-hop/rt:next-hop-options/rt:next-hop-list/rt:next-hop-list/rt:next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:112 with the name "address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:306
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:138: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:input" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:129 with the name "destination-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:324
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:155: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:output/rt:route" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:146 with the name "destination-prefix" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:342
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:173: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:output/rt:route/rt:next-hop/rt:next-hop-options/rt:simple-next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:164 with the name "next-hop-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:361
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:191: error: there is already a child node to "/rt:routing-state/rt:ribs/rt:rib/rt:active-route/rt:output/rt:route/rt:next-hop/rt:next-hop-options/rt:next-hop-list/rt:next-hop-list/rt:next-hop" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:182 with the name "next-hop-address" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:380
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:205: error: there is already a child node to "/rt:routing/rt:control-plane-protocols/rt:control-plane-protocol/rt:static-routes" at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2016-11-04.yang:201 with the name "ipv6" defined at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/ietf-ipv6-unicast-routing@2018-03-13.yang:206
data/users/guest/yang/ietf-netconf-acm@2012-02-22.yang:103: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/ietf-netconf-acm@2012-02-22.yang:144: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/ietf-netconf-notifications@2012-02-06.yang:286: warning: node "ietf-netconf-notifications::confirm-event" is not found in module "ietf-netconf-notifications"
data/users/guest/yang/ietf-snmp-community@2014-12-10.yang:220: warning: node "ietf-snmp::v1" is not found in "ietf-snmp::target"
data/users/guest/yang/ietf-snmp-community@2014-12-10.yang:220: warning: node "ietf-snmp::v2c" is not found in "ietf-snmp::target"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:791): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:850): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:954): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1015): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:163 (at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:95): warning: node "openconfig-if-aggregate::lag-type" is not found in "openconfig-if-aggregate::member"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:158: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:168: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::config"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:179: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::state"
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:303): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:303): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:313): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:313): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:319): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:319): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:370): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:370): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:380): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:380): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:386): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::hello-authentication"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:486): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:486): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:497): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:497): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:516): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:516): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:534): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:534): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:559): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:559): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:150): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:196): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:214): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:438): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-packet-match-types@2016-08-08.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:130): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::source-ip-flow-label"
data/users/guest/yang/openconfig-acl@2016-08-08.yang:713 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:130): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::source-ip-flow-label"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:143): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::destination-ip-flow-label"
data/users/guest/yang/openconfig-acl@2016-08-08.yang:713 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:143): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::destination-ip-flow-label"
data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:1110 (at data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:815): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"
data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:1110 (at data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:822): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"
data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:186: warning: node "openconfig-platform::PORT" is not found in "openconfig-platform::component"
data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:197: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:116): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:131): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:144): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:370: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:382: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:391: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:928 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:458): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface/oc-ip:ipv6/oc-ip:addresses/oc-ip:address/vrrp/vrrp-group/config" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:924 with the name "virtual-link-local" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1240 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:647)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:937 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:458): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface/oc-ip:ipv6/oc-ip:addresses/oc-ip:address/vrrp/vrrp-group/state" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:933 with the name "virtual-link-local" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1249 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:647)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:987 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:458): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-vlan:routed-vlan/oc-ip:ipv6/oc-ip:addresses/oc-ip:address/vrrp/vrrp-group/config" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:983 with the name "virtual-link-local" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1297 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:647)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:996 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:458): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-vlan:routed-vlan/oc-ip:ipv6/oc-ip:addresses/oc-ip:address/vrrp/vrrp-group/state" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:992 with the name "virtual-link-local" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1306 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:647)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:906 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:622): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface/oc-ip:ipv4/oc-ip:addresses/oc-ip:address" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:900 with the name "vrrp" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1218 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:821)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:918 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:622): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface/oc-ip:ipv6/oc-ip:addresses/oc-ip:address" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:913 with the name "vrrp" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1230 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:821)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:968 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:622): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-vlan:routed-vlan/oc-ip:ipv4/oc-ip:addresses/oc-ip:address" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:963 with the name "vrrp" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1278 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:821)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:978 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:622): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-vlan:routed-vlan/oc-ip:ipv6/oc-ip:addresses/oc-ip:address" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:973 with the name "vrrp" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1288 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:821)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:883 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:671): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:878 with the name "ipv4" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1195 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:939)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:947 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:671): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-vlan:routed-vlan" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:942 with the name "ipv4" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1259 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:939)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:893 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:778): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:888 with the name "ipv6" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1205 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1068)
data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:956 (at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:778): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-vlan:routed-vlan" at data/users/guest/yang/openconfig-if-ip@2016-12-22.yang:951 with the name "ipv6" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1267 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ip.yang:1068)
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-1/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I5-2/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-1/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I6-2/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-1/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-2/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-3/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-4/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-5a/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/7.0-3-I7-6/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:321): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:321): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:331): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:331): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:337): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:337): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:388): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:388): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:398): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:398): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:404): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:404): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-isis.yang:404): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::hello-authentication"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:1030 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:156): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:1030 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:202): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:1030 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:220): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:1030 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-network-instance.yang:444): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-platform-transceiver.yang:463 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-platform-transceiver.yang:428): error: there is already a child node to "/oc-platform:components/oc-platform:component" at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-platform-transceiver.yang:459 with the name "transceiver" defined at data/users/guest/yang/openconfig-platform-transceiver@2016-12-22.yang:434 (at data/users/guest/yang/openconfig-platform-transceiver@2016-12-22.yang:399)
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-platform-transceiver.yang:479: error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:state" at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-platform-transceiver.yang:472 with the name "physical-channel" defined at data/users/guest/yang/openconfig-platform-transceiver@2016-12-22.yang:450
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:399 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:138): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:399 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:152): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:399 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:162): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:400: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:411: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16101/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:13: warning: imported module "iana-if-type" not used
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:186: warning: prefix "ianaift" is not defined
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ethernet.yang:12: warning: imported module "iana-if-type" not used
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ethernet.yang:346: warning: prefix "ianaift" is not defined
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-rib-bgp.yang:712 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-rib-bgp.yang:681): warning: prefix "oc-bgp-types" is not defined
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1661/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1662/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1671/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1681/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1691/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-network-instance-types.yang:220: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xe/1693/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:63: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:63: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:81: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:81: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:102: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:102: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:104: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:104: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:109: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:109: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:110: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:110: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:112: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/612/openconfig-vlan.yang:112: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:63: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:63: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:81: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:81: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:102: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:102: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:104: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:104: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:109: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:109: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:110: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:110: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:112: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/613/openconfig-vlan.yang:112: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:63: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:63: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:81: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:81: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:102: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:102: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:104: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:104: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:109: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:109: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:110: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:110: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:112: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/621/openconfig-vlan.yang:112: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/622/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/xr/631/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-mpls.yang:702 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:448): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:448): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-mpls.yang:702 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:457): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:457): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-mpls.yang:702 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:473): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:473): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-mpls.yang:702 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:490): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:490): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-mpls.yang:702 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:513): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-mpls-rsvp.yang:513): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
/home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-transport-line-common.yang:215 (at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-transport-line-common.yang:194): error: there is already a child node to "/oc-platform:components/oc-platform:component" at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-transport-line-common.yang:212 with the name "optical-port" defined at data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:184 (at data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:155)
/home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-transport-line-common.yang:232: error: there is already a child node to "/oc-if:interfaces/oc-if:interface" at /home/vagrant/yang/modules/yang/vendor/cisco/xr/651/openconfig-transport-line-common.yang:223 with the name "sonet" defined at data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:204
data/users/guest/yang/openconfig-aaa@2017-01-29.yang:250: error: extension "openconfig-encrypted-value" is not defined in module openconfig-extensions
data/users/guest/yang/openconfig-aaa@2017-01-29.yang:318: error: extension "openconfig-encrypted-value" is not defined in module openconfig-extensions
data/users/guest/yang/openconfig-acl@2016-08-08.yang:336: error: grouping "ip-protocol-fields-top" not found in module "openconfig-packet-match"
data/users/guest/yang/openconfig-aft-network-instance@2017-01-13.yang:32: error: node openconfig-network-instance::aft is not found
data/users/guest/yang/openconfig-aft-network-instance@2017-01-13.yang:57: error: node openconfig-network-instance::aft is not found
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:791): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:850): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:954): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1015): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:163 (at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:95): warning: node "openconfig-if-aggregate::lag-type" is not found in "openconfig-if-aggregate::member"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:163 (at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:110): error: there is already a child node to "/oc-if:interfaces/oc-if:interface" at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:157 with the name "aggregation" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:191 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:136)
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:174 (at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:143): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-eth:ethernet/oc-eth:config" at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:167 with the name "aggregate-id" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:199 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:169)
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:185 (at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:143): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-eth:ethernet/oc-eth:state" at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:178 with the name "aggregate-id" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:207 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-aggregate.yang:169)
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:158: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:168: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::config"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:179: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::state"
data/users/guest/yang/openconfig-if-ethernet@2016-12-22.yang:333 (at data/users/guest/yang/openconfig-if-ethernet@2016-12-22.yang:302): error: there is already a child node to "/oc-if:interfaces/oc-if:interface" at data/users/guest/yang/openconfig-if-ethernet@2016-12-22.yang:329 with the name "ethernet" defined at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ethernet.yang:345 (at /home/vagrant/yang/modules/yang/vendor/cisco/xe/16111/openconfig-if-ethernet.yang:314)
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:150): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:196): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:214): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:438): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-packet-match-types@2016-08-08.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-pf-forwarding-policies@2016-11-08.yang:111: error: grouping "ip-protocol-fields-top" not found in module "openconfig-packet-match"
data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:1110 (at data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:815): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"
data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:1110 (at data/users/guest/yang/openconfig-terminal-device@2016-12-22.yang:822): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"
data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:186: warning: node "openconfig-platform::PORT" is not found in "openconfig-platform::component"
data/users/guest/yang/openconfig-transport-line-common@2016-03-31.yang:197: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:71: error: the value "oc-vlan-types:TPID_0x8100" does not match its base type - identityref not found
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:116): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:131): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:144): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:178): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-eth:ethernet" at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:367 with the name "switched-vlan" defined at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:399 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:194)
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:387 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:178): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-lag:aggregation" at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:379 with the name "switched-vlan" defined at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:410 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:194)
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:364 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:273): error: there is already a child node to "/oc-if:interfaces/oc-if:interface/oc-if:subinterfaces/oc-if:subinterface" at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:359 with the name "vlan" defined at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:377 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:289)
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:399 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:325): error: there is already a child node to "/oc-if:interfaces/oc-if:interface" at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:390 with the name "routed-vlan" defined at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:422 (at /home/vagrant/yang/modules/yang/vendor/cisco/nx/9.2-3/openconfig-vlan.yang:341)
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:370: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:382: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:391: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
openconfig errors:
broken:
openconfig-fib-types
openconfig-telemetry
openconfig-aft-types
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-telemetry@2016-05-31.yang:741: error: restriction "require-instance" not allowed for this base type
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-terminal-device@2016-12-22.yang:1110 (at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-terminal-device@2016-12-22.yang:815): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-terminal-device@2016-12-22.yang:1110 (at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-terminal-device@2016-12-22.yang:822): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-transport-line-common@2016-03-31.yang:186: warning: node "openconfig-platform::PORT" is not found in "openconfig-platform::component"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-transport-line-common@2016-03-31.yang:197: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-vlan-types@2016-05-26.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-yang-types@2017-01-26.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-yang-types@2017-01-26.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:791): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:850): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:954): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1015): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:163 (at data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:95): warning: node "openconfig-if-aggregate::lag-type" is not found in "openconfig-if-aggregate::member"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:158: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:168: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::config"
data/users/guest/yang/openconfig-if-aggregate@2016-12-22.yang:179: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::state"
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-isis-types@2017-01-13.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:303): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:303): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:313): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:313): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:319): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:319): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:370): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:370): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:380): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:380): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:386): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-isis@2017-01-13.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::hello-authentication"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:486): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:486): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:497): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:497): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:516): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:516): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:534): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:534): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-mpls@2017-01-26.yang:684 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:559): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-mpls-rsvp@2017-01-26.yang:559): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:150): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:196): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:214): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:438): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-packet-match-types@2016-08-08.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:130): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::source-ip-flow-label"
data/users/guest/yang/openconfig-acl@2016-08-08.yang:713 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:130): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::source-ip-flow-label"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:143): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::destination-ip-flow-label"
data/users/guest/yang/openconfig-acl@2016-08-08.yang:713 (at data/users/guest/yang/openconfig-packet-match@2016-08-08.yang:143): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::destination-ip-flow-label"
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:116): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:131): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:144): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:370: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:382: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:391: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
/home/vagrant/yang/modules/all_models_oc_one_dir/models/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-if-aggregate@2016-12-22.yang:163 (at data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-if-aggregate@2016-12-22.yang:95): warning: node "openconfig-if-aggregate::lag-type" is not found in "openconfig-if-aggregate::member"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-if-aggregate@2016-12-22.yang:158: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-if-aggregate@2016-12-22.yang:168: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::config"
data/session/lmmb2s4tgevqs2635jd672i92x3ut9ea/openconfig-if-aggregate@2016-12-22.yang:179: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::state"
data/users/guest/yang/openconfig-aft-types@2017-01-13.yang:3: error: duplicate namespace uri "http://openconfig.net/yang/fib-types" found in module "openconfig-fib-types"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:791): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:850): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:954): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"
data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1170 (at data/users/guest/yang/openconfig-bgp-policy@2017-02-02.yang:1015): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:150): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:196): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:214): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"
data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:1024 (at data/users/guest/yang/openconfig-network-instance@2017-02-28.yang:438): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan-types@2016-05-26.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:116): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:131): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:376 (at data/users/guest/yang/openconfig-vlan@2016-05-26.yang:144): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:370: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:382: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"
data/users/guest/yang/openconfig-vlan@2016-05-26.yang:391: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
data/users/guest/yang/openconfig-yang-types@2017-01-26.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning
(v) vagrant@vagrant:server (master)$ pip install -U pyang lxml
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
/home/vagrant/yang-explorer/v/local/lib/python2.7/site-packages/pip/_vendor/urllib3/util/ssl_.py:354: SNIMissingWarning: An HTTPS request has been made, but the SNI (Server Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
SNIMissingWarning
/home/vagrant/yang-explorer/v/local/lib/python2.7/site-packages/pip/_vendor/urllib3/util/ssl_.py:150: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecurePlatformWarning
Collecting pyang
/home/vagrant/yang-explorer/v/local/lib/python2.7/site-packages/pip/_vendor/urllib3/util/ssl_.py:150: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecurePlatformWarning
Downloading https://files.pythonhosted.org/packages/e8/49/355305b2f9588164e6b6a31e3f5fd597c287c1731692a9f3112766bf783d/pyang-2.0.1-py2.py3-none-any.whl (529kB)
|████████████████████████████████| 532kB 1.1MB/s
Collecting lxml
Downloading https://files.pythonhosted.org/packages/af/31/47cce58942bbf4b8f1c975ec2d1ab52141f7b7cf8cdecb58f25546d2c4fd/lxml-4.3.4-cp27-cp27mu-manylinux1_x86_64.whl (5.6MB)
|████████████████████████████████| 5.6MB 11.8MB/s
Installing collected packages: lxml, pyang
Found existing installation: lxml 3.4.4
Uninstalling lxml-3.4.4:
Successfully uninstalled lxml-3.4.4
Found existing installation: pyang 1.6
Uninstalling pyang-1.6:
Successfully uninstalled pyang-1.6
Successfully installed lxml-4.3.4 pyang-2.0.1
(v) vagrant@vagrant:server (master)$ python manage.py bulkupload --user guest --dir $HOME/oc_models/models/
Local upload ..
Compiling : user: guest, file: /home/vagrant/yang-explorer/server/data/session/tmpxocHWq/openconfig-if-ip-ext.yang
DEBUG:root:Compiling session dependency ...
/home/vagrant/yang-explorer/v/bin/pyang
DEBUG:root:Rebuilding dependencies for user guest
DEBUG:root:invoke_compile: CMD: ['pyang', '-f', 'pyimport', '--plugindir', 'explorer/plugins', '-p', 'data/users/guest/yang:data/session/tmpxocHWq', 'data/users/guest/yang/ietf-netconf-monitoring@2010-10-04.yang', 'data/users/guest/yang/ietf-yang-types.yang', 'data/users/guest/yang/ietf-inet-types.yang', 'data/users/guest/yang/ietf-interfaces@2013-12-23.yang', 'data/users/guest/yang/iana-if-type@2014-01-15.yang', 'data/session/tmpxocHWq/openconfig-if-ip-ext.yang', 'data/session/tmpxocHWq/openconfig-pf-path-groups.yang', 'data/session/tmpxocHWq/openconfig-aaa-radius.yang', 'data/session/tmpxocHWq/openconfig-isis-policy.yang', 'data/session/tmpxocHWq/openconfig-isis-lsdb-types.yang', 'data/session/tmpxocHWq/openconfig-segment-routing.yang', 'data/session/tmpxocHWq/openconfig-types.yang', 'data/session/tmpxocHWq/openconfig-vlan-types.yang', 'data/session/tmpxocHWq/openconfig-fib-types.yang', 'data/session/tmpxocHWq/openconfig-mpls-ldp.yang', 'data/session/tmpxocHWq/openconfig-network-instance.yang', 'data/session/tmpxocHWq/openconfig-local-routing.yang', 'data/session/tmpxocHWq/openconfig-platform-types.yang', 'data/session/tmpxocHWq/openconfig-ospfv2-area-interface.yang', 'data/session/tmpxocHWq/openconfig-procmon.yang', 'data/session/tmpxocHWq/openconfig-rpc-types.yang', 'data/session/tmpxocHWq/openconfig-rib-bgp.yang', 'data/session/tmpxocHWq/openconfig-ospfv2-area.yang', 'data/session/tmpxocHWq/openconfig-mpls-sr.yang', 'data/session/tmpxocHWq/openconfig-system-logging.yang', 'data/session/tmpxocHWq/openconfig-ospfv2-global.yang', 'data/session/tmpxocHWq/openconfig-aaa-types.yang', 'data/session/tmpxocHWq/openconfig-ospf-policy.yang', 'data/session/tmpxocHWq/openconfig-yang-types.yang', 'data/session/tmpxocHWq/openconfig-rpc.yang', 'data/session/tmpxocHWq/openconfig-catalog-types.yang', 'data/session/tmpxocHWq/openconfig-optical-amplifier.yang', 'data/session/tmpxocHWq/openconfig-vlan.yang', 'data/session/tmpxocHWq/openconfig-fib.yang', 'data/session/tmpxocHWq/openconfig-wavelength-router.yang', 'data/session/tmpxocHWq/openconfig-telemetry.yang', 'data/session/tmpxocHWq/openconfig-bgp-types.yang', 'data/session/tmpxocHWq/openconfig-bgp-peer-group.yang', 'data/session/tmpxocHWq/openconfig-rib-bgp-ext.yang', 'data/session/tmpxocHWq/openconfig-lldp.yang', 'data/session/tmpxocHWq/openconfig-ospf-types.yang', 'data/session/tmpxocHWq/openconfig-policy-types.yang', 'data/session/tmpxocHWq/openconfig-terminal-device.yang', 'data/session/tmpxocHWq/openconfig-platform.yang', 'data/session/tmpxocHWq/openconfig-aaa.yang', 'data/session/tmpxocHWq/openconfig-bgp-common.yang', 'data/session/tmpxocHWq/openconfig-transport-types.yang', 'data/session/tmpxocHWq/openconfig-mpls-te.yang', 'data/session/tmpxocHWq/openconfig-if-aggregate.yang', 'data/session/tmpxocHWq/openconfig-spanning-tree-types.yang', 'data/session/tmpxocHWq/openconfig-isis-lsp.yang', 'data/session/tmpxocHWq/openconfig-rib-bgp-types.yang', 'data/session/tmpxocHWq/openconfig-module-catalog.yang', 'data/session/tmpxocHWq/openconfig-lldp-types.yang', 'data/session/tmpxocHWq/openconfig-transport-line-common.yang', 'data/session/tmpxocHWq/openconfig-inet-types.yang', 'data/session/tmpxocHWq/openconfig-acl.yang', 'data/session/tmpxocHWq/openconfig-isis.yang', 'data/session/tmpxocHWq/openconfig-isis-types.yang', 'data/session/tmpxocHWq/openconfig-mpls-rsvp.yang', 'data/session/tmpxocHWq/openconfig-bgp-neighbor.yang', 'data/session/tmpxocHWq/openconfig-network-instance-types.yang', 'data/session/tmpxocHWq/openconfig-policy-forwarding.yang', 'data/session/tmpxocHWq/openconfig-mpls-static.yang', 'data/session/tmpxocHWq/openconfig-mpls-types.yang', 'data/session/tmpxocHWq/openconfig-if-ethernet.yang', 'data/session/tmpxocHWq/openconfig-bgp-policy.yang', 'data/session/tmpxocHWq/openconfig-bgp-global.yang', 'data/session/tmpxocHWq/openconfig-packet-match.yang', 'data/session/tmpxocHWq/openconfig-if-ip.yang', 'data/session/tmpxocHWq/openconfig-isis-routing.yang', 'data/session/tmpxocHWq/openconfig-mpls-igp.yang', 'data/session/tmpxocHWq/openconfig-bgp-common-multiprotocol.yang', 'data/session/tmpxocHWq/openconfig-system-terminal.yang', 'data/session/tmpxocHWq/openconfig-routing-policy.yang', 'data/session/tmpxocHWq/openconfig-ospfv2-common.yang', 'data/session/tmpxocHWq/openconfig-spanning-tree.yang', 'data/session/tmpxocHWq/openconfig-network-instance-l2.yang', 'data/session/tmpxocHWq/openconfig-bgp-common-structure.yang', 'data/session/tmpxocHWq/openconfig-ospfv2.yang', 'data/session/tmpxocHWq/openconfig-bgp.yang', 'data/session/tmpxocHWq/openconfig-network-instance-l3.yang', 'data/session/tmpxocHWq/openconfig-platform-transceiver.yang', 'data/session/tmpxocHWq/openconfig-aft.yang', 'data/session/tmpxocHWq/openconfig-mpls.yang', 'data/session/tmpxocHWq/openconfig-aft-network-instance.yang', 'data/session/tmpxocHWq/openconfig-pf-forwarding-policies.yang', 'data/session/tmpxocHWq/openconfig-pf-interfaces.yang', 'data/session/tmpxocHWq/openconfig-aaa-tacacs.yang', 'data/session/tmpxocHWq/openconfig-aft-types.yang', 'data/session/tmpxocHWq/openconfig-lacp.yang', 'data/session/tmpxocHWq/openconfig-relay-agent.yang', 'data/session/tmpxocHWq/openconfig-ospfv2-lsdb.yang', 'data/session/tmpxocHWq/openconfig-interfaces.yang', 'data/session/tmpxocHWq/openconfig-system.yang', 'data/session/tmpxocHWq/openconfig-extensions.yang', 'data/session/tmpxocHWq/openconfig-packet-match-types.yang']
ERROR:root:invoke_compile: Compile Errors: ['data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:791): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"', 'data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:850): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"', 'data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:954): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"', 'data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:1015): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"', 'data/session/tmpxocHWq/openconfig-fib-types.yang:3: error: duplicate namespace uri "http://openconfig.net/yang/fib-types" found in module "openconfig-aft-types"', 'data/session/tmpxocHWq/openconfig-if-aggregate.yang:163 (at data/session/tmpxocHWq/openconfig-if-aggregate.yang:95): warning: node "openconfig-if-aggregate::lag-type" is not found in "openconfig-if-aggregate::member"', 'data/session/tmpxocHWq/openconfig-if-aggregate.yang:158: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"', 'data/session/tmpxocHWq/openconfig-if-aggregate.yang:168: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::config"', 'data/session/tmpxocHWq/openconfig-if-aggregate.yang:179: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::state"', 'data/session/tmpxocHWq/openconfig-isis-types.yang:271: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-isis-types.yang:271: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-isis-types.yang:280: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-isis-types.yang:280: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-isis-types.yang:288: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-isis-types.yang:288: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:303): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:303): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:313): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:313): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:319): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:319): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:370): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:370): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:380): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:380): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:386): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::hello-authentication"', 'data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:486): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:486): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"', 'data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:497): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:497): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"', 'data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:516): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:516): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"', 'data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:534): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:534): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"', 'data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:559): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:559): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:150): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:196): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:214): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:438): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"', 'data/session/tmpxocHWq/openconfig-packet-match-types.yang:238: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-packet-match-types.yang:238: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-packet-match.yang:130): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::source-ip-flow-label"', 'data/session/tmpxocHWq/openconfig-acl.yang:713 (at data/session/tmpxocHWq/openconfig-packet-match.yang:130): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::source-ip-flow-label"', 'data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-packet-match.yang:143): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::destination-ip-flow-label"', 'data/session/tmpxocHWq/openconfig-acl.yang:713 (at data/session/tmpxocHWq/openconfig-packet-match.yang:143): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::destination-ip-flow-label"', 'data/session/tmpxocHWq/openconfig-telemetry.yang:741: error: restriction "require-instance" not allowed for this base type', 'data/session/tmpxocHWq/openconfig-terminal-device.yang:1110 (at data/session/tmpxocHWq/openconfig-terminal-device.yang:815): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"', 'data/session/tmpxocHWq/openconfig-terminal-device.yang:1110 (at data/session/tmpxocHWq/openconfig-terminal-device.yang:822): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"', 'data/session/tmpxocHWq/openconfig-transport-line-common.yang:186: warning: node "openconfig-platform::PORT" is not found in "openconfig-platform::component"', 'data/session/tmpxocHWq/openconfig-transport-line-common.yang:197: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:84: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:84: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:100: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:100: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:102: warning: the escape sequence "\\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:102: warning: the escape sequence "\\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:121: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:121: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:123: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:123: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:125: warning: the escape sequence "\\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:125: warning: the escape sequence "\\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:130: warning: the escape sequence "\\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:130: warning: the escape sequence "\\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:131: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:131: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:133: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan-types.yang:133: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-vlan.yang:376 (at data/session/tmpxocHWq/openconfig-vlan.yang:116): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"', 'data/session/tmpxocHWq/openconfig-vlan.yang:376 (at data/session/tmpxocHWq/openconfig-vlan.yang:131): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"', 'data/session/tmpxocHWq/openconfig-vlan.yang:376 (at data/session/tmpxocHWq/openconfig-vlan.yang:144): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"', 'data/session/tmpxocHWq/openconfig-vlan.yang:370: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"', 'data/session/tmpxocHWq/openconfig-vlan.yang:382: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"', 'data/session/tmpxocHWq/openconfig-vlan.yang:391: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"', 'data/session/tmpxocHWq/openconfig-yang-types.yang:78: warning: the escape sequence "\\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-yang-types.yang:78: warning: the escape sequence "\\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-yang-types.yang:79: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', 'data/session/tmpxocHWq/openconfig-yang-types.yang:79: warning: the escape sequence "\\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning', '']
Compilation Failed: <messages><message>data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:791): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"</message><message>data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:850): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"</message><message>data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:954): warning: node "openconfig-bgp-policy::INLINE" is not found in "openconfig-bgp-policy::inline"</message><message>data/session/tmpxocHWq/openconfig-bgp-policy.yang:1170 (at data/session/tmpxocHWq/openconfig-bgp-policy.yang:1015): warning: node "openconfig-bgp-policy::REFERENCE" is not found in "openconfig-bgp-policy::reference"</message><message>data/session/tmpxocHWq/openconfig-fib-types.yang:3: error: duplicate namespace uri "http://openconfig.net/yang/fib-types" found in module "openconfig-aft-types"</message><message>data/session/tmpxocHWq/openconfig-if-aggregate.yang:163 (at data/session/tmpxocHWq/openconfig-if-aggregate.yang:95): warning: node "openconfig-if-aggregate::lag-type" is not found in "openconfig-if-aggregate::member"</message><message>data/session/tmpxocHWq/openconfig-if-aggregate.yang:158: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"</message><message>data/session/tmpxocHWq/openconfig-if-aggregate.yang:168: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::config"</message><message>data/session/tmpxocHWq/openconfig-if-aggregate.yang:179: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::state"</message><message>data/session/tmpxocHWq/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-isis-types.yang:271: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-isis-types.yang:280: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-isis-types.yang:288: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:303): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:303): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:313): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:313): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:319): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:319): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:370): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::config"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:370): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:380): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::state"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:380): warning: node "openconfig-network-instance::KEY" is not found in "openconfig-network-instance::auth-password"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::authentication"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:386): warning: node "openconfig-network-instance::KEY_CHAIN" is not found in "openconfig-network-instance::keychain"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-isis.yang:386): warning: node "openconfig-network-instance::auth-type" is not found in "openconfig-network-instance::hello-authentication"</message><message>data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:486): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:486): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"</message><message>data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:497): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:497): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"</message><message>data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:516): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:516): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"</message><message>data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:534): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:534): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"</message><message>data/session/tmpxocHWq/openconfig-mpls.yang:684 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:559): warning: node "openconfig-mpls::tunnel" is not found in "openconfig-mpls::constrained-path"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-mpls-rsvp.yang:559): warning: node "openconfig-network-instance::mpls" is not found in module "openconfig-network-instance"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:150): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:196): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:214): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::network-instance"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-network-instance.yang:438): warning: node "openconfig-network-instance::type" is not found in "openconfig-network-instance::config"</message><message>data/session/tmpxocHWq/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-packet-match-types.yang:238: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-packet-match.yang:130): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::source-ip-flow-label"</message><message>data/session/tmpxocHWq/openconfig-acl.yang:713 (at data/session/tmpxocHWq/openconfig-packet-match.yang:130): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::source-ip-flow-label"</message><message>data/session/tmpxocHWq/openconfig-network-instance.yang:1024 (at data/session/tmpxocHWq/openconfig-packet-match.yang:143): warning: node "openconfig-network-instance::ip-version" is not found in "openconfig-network-instance::destination-ip-flow-label"</message><message>data/session/tmpxocHWq/openconfig-acl.yang:713 (at data/session/tmpxocHWq/openconfig-packet-match.yang:143): warning: node "openconfig-acl::ip-version" is not found in "openconfig-acl::destination-ip-flow-label"</message><message>data/session/tmpxocHWq/openconfig-telemetry.yang:741: error: restriction "require-instance" not allowed for this base type</message><message>data/session/tmpxocHWq/openconfig-terminal-device.yang:1110 (at data/session/tmpxocHWq/openconfig-terminal-device.yang:815): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"</message><message>data/session/tmpxocHWq/openconfig-terminal-device.yang:1110 (at data/session/tmpxocHWq/openconfig-terminal-device.yang:822): warning: node "openconfig-terminal-device::logical-channel-type" is not found in "openconfig-terminal-device::config"</message><message>data/session/tmpxocHWq/openconfig-transport-line-common.yang:186: warning: node "openconfig-platform::PORT" is not found in "openconfig-platform::component"</message><message>data/session/tmpxocHWq/openconfig-transport-line-common.yang:197: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:84: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:100: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:102: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:121: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:123: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:125: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:130: warning: the escape sequence "\*" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:131: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan-types.yang:133: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-vlan.yang:376 (at data/session/tmpxocHWq/openconfig-vlan.yang:116): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::native-vlan"</message><message>data/session/tmpxocHWq/openconfig-vlan.yang:376 (at data/session/tmpxocHWq/openconfig-vlan.yang:131): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::access-vlan"</message><message>data/session/tmpxocHWq/openconfig-vlan.yang:376 (at data/session/tmpxocHWq/openconfig-vlan.yang:144): warning: node "openconfig-vlan::interface-mode" is not found in "openconfig-vlan::trunk-vlans"</message><message>data/session/tmpxocHWq/openconfig-vlan.yang:370: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-ethernet::ethernet"</message><message>data/session/tmpxocHWq/openconfig-vlan.yang:382: warning: node "openconfig-interfaces::type" is not found in "openconfig-if-aggregate::aggregation"</message><message>data/session/tmpxocHWq/openconfig-vlan.yang:391: warning: node "openconfig-interfaces::type" is not found in "openconfig-interfaces::interface"</message><message>data/session/tmpxocHWq/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-yang-types.yang:78: warning: the escape sequence "\-" is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message>data/session/tmpxocHWq/openconfig-yang-types.yang:79: warning: the escape sequence "\." is unsafe in double quoted strings - pass the flag --lax-quote-checks to avoid this warning</message><message></message></messages>
Cleaning up /home/vagrant/yang-explorer/server/data/session/tmpxocHWq
(v) vagrant@vagrant:server (master)$