File tree Expand file tree Collapse file tree 2 files changed +7
-24
lines changed
tests/config_fuzzer/schemas Expand file tree Collapse file tree 2 files changed +7
-24
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,11 @@ export const networkmanager_settings = {
210
210
type : "string"
211
211
}
212
212
} ,
213
+ patternProperties : {
214
+ "[azAZ09-]{1,10}" : {
215
+ type : "object" ,
216
+ }
217
+ }
213
218
}
214
219
} ,
215
220
required : [ "passthrough" ]
Original file line number Diff line number Diff line change 1
- import common_properties , { minMaxProperties } from "./common.js" ;
1
+ import { minMaxProperties , networkmanager_settings } from "./common.js" ;
2
2
3
3
const nmdevices_schema = {
4
4
type : "object" ,
@@ -34,29 +34,7 @@ const nmdevices_schema = {
34
34
type : "string" ,
35
35
enum : [ "NetworkManager" ]
36
36
} ,
37
- networkmanager : {
38
- type : "object" ,
39
- additionalProperties : false ,
40
- properties : {
41
- uuid : {
42
- type : "string"
43
- } ,
44
- name : {
45
- type : "string"
46
- } ,
47
- passthrough : {
48
- type : "object" ,
49
- additionalProperties : true ,
50
- properties : {
51
- "connection.type" : {
52
- type : "string"
53
- }
54
- } ,
55
- required : [ "connection.type" ]
56
- }
57
- } ,
58
- required : [ "passthrough" ]
59
- } ,
37
+ ...networkmanager_settings
60
38
} ,
61
39
required : [ "networkmanager" ]
62
40
}
You can’t perform that action at this time.
0 commit comments