{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "BlockDecisionWire": { "enum": [ "block" ], "type": "string" }, "HookEventNameWire": { "enum": [ "PreToolUse", "PostToolUse", "SessionStart", "UserPromptSubmit", "Stop" ], "type": "string" }, "PostToolUseHookSpecificOutputWire": { "additionalProperties": false, "properties": { "additionalContext": { "default": null, "type": "string" }, "hookEventName": { "$ref": "#/definitions/HookEventNameWire" }, "updatedMCPToolOutput": { "default": null } }, "required": [ "hookEventName" ], "type": "object" } }, "properties": { "continue": { "default": true, "type": "boolean" }, "decision": { "allOf": [ { "$ref": "#/definitions/BlockDecisionWire" } ], "default": null }, "hookSpecificOutput": { "allOf": [ { "$ref": "#/definitions/PostToolUseHookSpecificOutputWire" } ], "default": null }, "reason": { "default": null, "type": "string" }, "stopReason": { "default": null, "type": "string" }, "suppressOutput": { "default": false, "type": "boolean" }, "systemMessage": { "default": null, "type": "string" } }, "title": "post-tool-use.command.output", "type": "object" }