{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "HookEventNameWire": { "enum": [ "SessionStart", "Stop" ], "type": "string" }, "SessionStartHookSpecificOutputWire": { "additionalProperties": false, "properties": { "additionalContext": { "default": null, "type": "string" }, "hookEventName": { "$ref": "#/definitions/HookEventNameWire" } }, "required": [ "hookEventName" ], "type": "object" } }, "properties": { "continue": { "default": true, "type": "boolean" }, "hookSpecificOutput": { "allOf": [ { "$ref": "#/definitions/SessionStartHookSpecificOutputWire" } ], "default": null }, "stopReason": { "default": null, "type": "string" }, "suppressOutput": { "default": false, "type": "boolean" }, "systemMessage": { "default": null, "type": "string" } }, "title": "session-start.command.output", "type": "object" }