b9f58e715c2e29b6c2b4a33bcdc0474cc48f7d46
[smo/teiv.git] /
1 module string-tokenization-yang1.1-test-module {
2
3     yang-version 1.1;
4
5     namespace "urn:o-ran:yang:string-tokenization-yang1.1-test-module";
6     prefix "test";
7
8         description
9         "Copyright (C) 2024 Ericsson
10         Modifications Copyright (C) 2024 OpenInfra Foundation Europe";
11
12     revision 2019-10-08 {
13         description "Initial revision.";
14     }
15
16     container cont1 {
17         description "valid YANG 1.1 double-quoted string";
18     }
19
20     container cont2 {
21         description "invalid YANG 1.1 double-quoted string with special characters \n \t \" \\ \X \_";
22     }
23
24     container cont3 {
25         description "valid YANG 1.1
26                            double-quoted string";
27     }
28
29     container cont4 {
30         description "valid YANG 1.1
31
32                          double-quoted string";
33     }
34
35     container cont5 {
36         description "";
37     }
38
39     container cont6 {
40         description "invalid YANG 1.1 double-quoted string \
41                          because of trailing backslash";
42     }
43
44     container cont11 {
45         description 'valid YANG 1.1 single-quoted string';
46     }
47
48     container cont12 {
49         description 'valid YANG 1.1 single-quoted string " \n \t \\ \X';
50     }
51
52     container cont13 {
53         description 'valid YANG 1.1
54 single-quoted string';
55     }
56
57     container cont14 {
58         description 'valid YANG 1.1
59                            single-quoted string';
60     }
61
62     container cont21 {
63         description valid_YANG_1_1_unquoted_string;
64     }
65
66     container cont22 {
67         description invalid_YANG_1_1_unquoted_string_with_a_quote_at_the_end";
68     }
69
70
71
72 }