We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9447d3c + d46c8b2 commit 55ae274Copy full SHA for 55ae274
schema/config-schema.json
@@ -145,13 +145,23 @@
145
"type": "string"
146
},
147
"ioPriority": {
148
- "class": "string",
149
- "enum": [
150
- "IOPRIO_CLASS_RT",
151
- "IOPRIO_CLASS_BE",
152
- "IOPRIO_CLASS_IDLE"
+ "type": "object",
+ "required": [
+ "class"
153
],
154
- "priority": "integer"
+ "properties": {
+ "class": {
+ "type": "string",
155
+ "enum": [
156
+ "IOPRIO_CLASS_RT",
157
+ "IOPRIO_CLASS_BE",
158
+ "IOPRIO_CLASS_IDLE"
159
+ ]
160
+ },
161
+ "priority": {
162
+ "$ref": "defs.json#/definitions/int32"
163
+ }
164
165
166
"noNewPrivileges": {
167
"type": "boolean"
0 commit comments