diff --git a/doc/cascadia/profiles.schema.json b/doc/cascadia/profiles.schema.json index d60db96aac..02f73aa64d 100644 --- a/doc/cascadia/profiles.schema.json +++ b/doc/cascadia/profiles.schema.json @@ -2294,8 +2294,15 @@ "additionalProperties": false, "properties": { "id": { - "description": "The ID of the command this keybinding should execute.", - "type": "string" + "description": "The ID of the command this keybinding should execute (or null to disable a default).", + "oneOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ] }, "keys": { "description": "Defines the key combinations used to call the command. It must be composed of...\n -any number of modifiers (ctrl/alt/shift)\n -a non-modifier key",