Skip to content

Commit fb6e552

Browse files
author
Luca Bianconi
committed
fix: additional_urls type
1 parent ed29087 commit fb6e552

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: configuration/configuration.schema.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"properties": {
88
"additional_urls": {
99
"description": "the URLs to any additional Boards Manager package index files needed for your boards platforms.",
10-
"type": "string"
10+
"type": "array",
11+
"items": {
12+
"type": "string"
13+
}
1114
}
1215
},
1316
"type": "object"
@@ -35,9 +38,8 @@
3538
"properties": {
3639
"port": {
3740
"description": "TCP port used for gRPC client connections.",
38-
"type": "number",
39-
"format": "integer",
40-
"minimum": 0
41+
"type": "string",
42+
"pattern": "^[0-9]+$"
4143
}
4244
},
4345
"type": "object"
@@ -107,9 +109,7 @@
107109
"properties": {
108110
"addr": {
109111
"description": "TCP port used for metrics communication.",
110-
"type": "number",
111-
"format": "integer",
112-
"minimum": 0
112+
"type": "string"
113113
},
114114
"enabled": {
115115
"description": "controls the use of metrics.",

0 commit comments

Comments
 (0)