summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/nn-to-json/simple-data-types/simple-data-types.yang
blob: cf6e513b30a1bdc6f10f7725bba73d54aaefac2c (plain)
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
module simple-data-types {
  namespace "simple:data:types";  

  prefix "smpdtp";
  revision 2013-11-12 {    
  }
  
  identity iden {
  }
  
  typedef tpdfempty {
  	type empty;
  }
  
  typedef tpdfbit {
  	type bits {
  		bit b1;
  		bit b2;
  		bit b3;
  	}
  }
  
  typedef tpdfun4 {
  	type boolean;
  }
  
  typedef tpdfun3 {
  	type union {
  		type tpdfbit;
  		type tpdfempty;
  	}
  }  
  
  typedef tpdfun2 {
  	type union {
  		type tpdfun3;
  		type tpdfun4;
  	}
  }
  
  typedef tpdfun1 {
  	type union {
  		type uint8;
  		type decimal64 {
  			fraction-digits 2;
  		}
  	}
  }
  
  container cont {
	  leaf lfnint8Min {
	  	type int8; 
	  }
	  leaf lfnint8Max {
	  	type int8; 
	  }
	  leaf lfnint16Min {
	  	type int16; 
	  }
	  leaf lfnint16Max {
	  	type int16; 
	  }
	  leaf lfnint32Min {
	  	type int32; 
	  }
	  leaf lfnint32Max {
	  	type int32; 
	  }
	  leaf lfnint64Min {
	  	type int64; 
	  }
	  leaf lfnint64Max {
	  	type int64; 
	  }
	  
	  leaf lfnuint8Max {
	  	type uint8; 
	  }
	  leaf lfnuint16Max {
	  	type uint16; 
	  }
	  leaf lfnuint32Max {
	  	type uint32; 
	  }
	  leaf lfuint64Max {
	  	type uint64; 
	  }
	  leaf lfstr {
	  	type string;
	  }	  
	  leaf lfstr1 {
	  	type string;
	  }	  
	  leaf lfbool1 {
	  	type boolean;
	  }	  
	  leaf lfbool2 {
	  	type boolean;
	  }	  
	  leaf lfbool3 {
	  	type boolean;
	  }	  
	  leaf lfdecimal1 {
	  	type decimal64 {
	  		fraction-digits 2;
	  	}	
	  }	  
	  leaf lfdecimal2 {
	  	type decimal64 {
	  		fraction-digits 2;
	  	}	
	  }	  
	  leaf lfdecimal3 {
	  	type decimal64 {
	  		fraction-digits 2;
	  	}	
	  }	 
	   
	  leaf lfdecimal4 {
	  	type decimal64 {
	  		fraction-digits 2;
	  	}	
	  }
	  	  
  	  
	  leaf lfdecimal6 {
	  	type decimal64 {
	  		fraction-digits 2;
	  	}	
	  }	  

    leaf lfenum {
      type enumeration {
        enum enum1;
        enum enum2;
        enum enum3;
        enum enum4;
      }
    }

    leaf lfbits {
      type bits {
        bit bit1;
        bit bit2;
        bit bit3;
        bit bit4;
      }
    }	
    
    leaf lfbinary {
    	type binary;
    }  
    
    leaf lfref1 {                  //reference to string type
    	type leafref {
    		path "../lfstr";
    	}
    }
    
    leaf lfref2 {                  //reference to number type
    	type leafref {
    		path "../lfnint8Max";
    	}
    }
    
    leaf lfempty {
    	type empty;
    }
    
    leaf lfunion1 {
    	type union {
    		type uint16;
    		type string;
    	}
    }
    leaf lfunion2 {
    	type union {
    		type decimal64 {
	  			fraction-digits 2;    		
    		}
    		type string;
    	}
    }
    
    leaf lfunion3 {
    	type union {
    		type empty;
    		type string;
    	}
    }
    
    leaf lfunion4 {
    	type union {
    		type boolean;
    		type string;
    	}
    }
    
    leaf lfunion5 {
    	type union {
    		type uint16;
    		type string;
    	}
    }
    
    leaf lfunion6 {
    	type union {
    		type uint16;
    		type empty;
    	}
    }
    
    leaf lfunion7 {
		type tpdfun3;
    }
    
    leaf lfunion8 {
    	type union {
    		type uint16;
    		type string;
    	}
    }
    
    leaf lfunion9 {
    	type union {
    		type uint16;
    		type boolean;    		
    	}
    }
    
    leaf lfunion10 {
    	type union {
    		type bits {
    			bit bt1;
    			bit bt2;
    		}
    		type boolean;    		
    	}
    }
    
    leaf lfunion11 {
		type union {
			type tpdfun1;
			type tpdfun2;
		}
    }
    
    leaf lfunion12 {
		type tpdfun2;
    }
    
    leaf lfunion13 {
        type tpdfbit;    
    }
        
    leaf lfunion14 {
        type union {
            type enumeration {
                enum zero;
                enum one;
            }
            type uint16;
        }    
    }    
    
    leaf identityref1 {
        type identityref {
            base iden;
        }
    }
	  
	anyxml complex-any;
	
	anyxml simple-any;
	
	anyxml empty-any;
  }
}