From 274e2d6696d45285e510dc9f08d2cd0ff84c4c79 Mon Sep 17 00:00:00 2001 From: Eric Cornelson Date: Mon, 21 Oct 2019 14:07:58 -0700 Subject: [PATCH] Add an optional 'sessionId' parameter to ProtocolMessage --- debugAdapterProtocol.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debugAdapterProtocol.json b/debugAdapterProtocol.json index 70002ad..f8ef7de 100644 --- a/debugAdapterProtocol.json +++ b/debugAdapterProtocol.json @@ -20,6 +20,10 @@ "type": "string", "description": "Message type.", "_enum": [ "request", "response", "event" ] + }, + "sessionId": { + "type": "string", + "description": "Optional unique identifier indicating for which debugging session this protocol message is bound" } }, "required": [ "seq", "type" ]