blob: df4f9ad1edbd91ce5cf23314d852a9581d0fed30 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Debug Adapter Protocol",
"description": "The Debug Adapter Protocol defines the protocol used between an editor or IDE and a debugger or runtime.",
"type": "object",
"definitions": {
"ProtocolMessage": {
"type": "object",
"title": "Base Protocol",
"description": "Base class of requests, responses, and events.",
"properties": {
"seq": {
"type": "integer",
"description": "Sequence number (also known as message ID). For protocol messages of type 'request' this ID can be used to cancel the request."
},
"type": {
"type": "string",
"description": "Message type.",
"_enum": [ "request", "response", "event" ]
}
},
"required": [ "seq", "type" ]
},
"Request": {
"allOf": [ { "$ref": "#/definitions/ProtocolMessage" }, {
"type": "object",
"description": "A client or debug adapter initiated request.",
"properties": {
"type": {
"type": "string",
"enum": [ "request" ]
},
"command": {
"type": "string",
"description": "The command to execute."
},
"arguments": {
"type": [ "array", "boolean", "integer", "null", "number" , "object", "string" ],
"description": "Object containing arguments for the command."
}
},
"required": [ "type", "command" ]
}]
},
"Event": {
"allOf": [ { "$ref": "#/definitions/ProtocolMessage" }, {
"type": "object",
"description": "A debug adapter initiated event.",
"properties": {
"type": {
"type": "string",
"enum": [ "event" ]
},
"event": {
"type": "string",
"description": "Type of event."
},
"body": {
"type": [ "array", "boolean", "integer", "null", "number" , "object", "string" ],
"description": "Event-specific information."
}
},
"required": [ "type", "event" ]
}]
},
"Response": {
"allOf": [ { "$ref": "#/definitions/ProtocolMessage" }, {
"type": "object",
"description": "Response for a request.",
"properties": {
"type": {
"type": "string",
"enum": [ "response" ]
},
"request_seq": {
"type": "integer",
"description": "Sequence number of the corresponding request."
},
"success": {
"type": "boolean",
"description": "Outcome of the request.\nIf true, the request was successful and the 'body' attribute may contain the result of the request.\nIf the value is false, the attribute 'message' contains the error in short form and the 'body' may contain additional information (see 'ErrorResponse.body.error')."
},
"command": {
"type": "string",
"description": "The command requested."
},
"message": {
"type": "string",
"description": "Contains the raw error in short form if 'success' is false.\nThis raw error might be interpreted by the frontend and is not shown in the UI.\nSome predefined values exist.",
"_enum": [ "cancelled" ],
"enumDescriptions": [
"request was cancelled."
]
},
"body": {
"type": [ "array", "boolean", "integer", "null", "number" , "object", "string" ],
"description": "Contains request result if success is true and optional error details if success is false."
}
},
"required": [ "type", "request_seq", "success", "command" ]
}]
},
"ErrorResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "On error (whenever 'success' is false), the body can provide more details.",
"properties": {
"body": {
"type": "object",
"properties": {
"error": {
"$ref": "#/definitions/Message",
"description": "An optional, structured error message."
}
}
}
},
"required": [ "body" ]
}]
},
"CancelRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The 'cancel' request is used by the frontend in two situations:\n- to indicate that it is no longer interested in the result produced by a specific request issued earlier\n- to cancel a progress sequence. Clients should only call this request if the capability 'supportsCancelRequest' is true.\nThis request has a hint characteristic: a debug adapter can only be expected to make a 'best effort' in honouring this request but there are no guarantees.\nThe 'cancel' request may return an error if it could not cancel an operation but a frontend should refrain from presenting this error to end users.\nA frontend client should only call this request if the capability 'supportsCancelRequest' is true.\nThe request that got canceled still needs to send a response back. This can either be a normal result ('success' attribute true)\nor an error response ('success' attribute false and the 'message' set to 'cancelled').\nReturning partial results from a cancelled request is possible but please note that a frontend client has no generic way for detecting that a response is partial or not.\n The progress that got cancelled still needs to send a 'progressEnd' event back.\n A client should not assume that progress just got cancelled after sending the 'cancel' request.",
"properties": {
"command": {
"type": "string",
"enum": [ "cancel" ]
},
"arguments": {
"$ref": "#/definitions/CancelArguments"
}
},
"required": [ "command" ]
}]
},
"CancelArguments": {
"type": "object",
"description": "Arguments for 'cancel' request.",
"properties": {
"requestId": {
"type": "integer",
"description": "The ID (attribute 'seq') of the request to cancel. If missing no request is cancelled.\nBoth a 'requestId' and a 'progressId' can be specified in one request."
},
"progressId": {
"type": "string",
"description": "The ID (attribute 'progressId') of the progress to cancel. If missing no progress is cancelled.\nBoth a 'requestId' and a 'progressId' can be specified in one request."
}
}
},
"CancelResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'cancel' request. This is just an acknowledgement, so no body field is required."
}]
},
"InitializedEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"title": "Events",
"description": "This event indicates that the debug adapter is ready to accept configuration requests (e.g. SetBreakpointsRequest, SetExceptionBreakpointsRequest).\nA debug adapter is expected to send this event when it is ready to accept configuration requests (but not before the 'initialize' request has finished).\nThe sequence of events/requests is as follows:\n- adapters sends 'initialized' event (after the 'initialize' request has returned)\n- frontend sends zero or more 'setBreakpoints' requests\n- frontend sends one 'setFunctionBreakpoints' request (if capability 'supportsFunctionBreakpoints' is true)\n- frontend sends a 'setExceptionBreakpoints' request if one or more 'exceptionBreakpointFilters' have been defined (or if 'supportsConfigurationDoneRequest' is not defined or false)\n- frontend sends other future configuration requests\n- frontend sends one 'configurationDone' request to indicate the end of the configuration.",
"properties": {
"event": {
"type": "string",
"enum": [ "initialized" ]
}
},
"required": [ "event" ]
}]
},
"StoppedEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that the execution of the debuggee has stopped due to some condition.\nThis can be caused by a break point previously set, a stepping request has completed, by executing a debugger statement etc.",
"properties": {
"event": {
"type": "string",
"enum": [ "stopped" ]
},
"body": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "The reason for the event.\nFor backward compatibility this string is shown in the UI if the 'description' attribute is missing (but it must not be translated).",
"_enum": [ "step", "breakpoint", "exception", "pause", "entry", "goto", "function breakpoint", "data breakpoint", "instruction breakpoint" ]
},
"description": {
"type": "string",
"description": "The full reason for the event, e.g. 'Paused on exception'. This string is shown in the UI as is and must be translated."
},
"threadId": {
"type": "integer",
"description": "The thread which was stopped."
},
"preserveFocusHint": {
"type": "boolean",
"description": "A value of true hints to the frontend that this event should not change the focus."
},
"text": {
"type": "string",
"description": "Additional information. E.g. if reason is 'exception', text contains the exception name. This string is shown in the UI."
},
"allThreadsStopped": {
"type": "boolean",
"description": "If 'allThreadsStopped' is true, a debug adapter can announce that all threads have stopped.\n- The client should use this information to enable that all threads can be expanded to access their stacktraces.\n- If the attribute is missing or false, only the thread with the given threadId can be expanded."
},
"hitBreakpointIds": {
"type": "array",
"items": {
"type": "integer"
},
"description": "Ids of the breakpoints that triggered the event. In most cases there will be only a single breakpoint but here are some examples for multiple breakpoints:\n- Different types of breakpoints map to the same location.\n- Multiple source breakpoints get collapsed to the same instruction by the compiler/runtime.\n- Multiple function breakpoints with different function names map to the same location."
}
},
"required": [ "reason" ]
}
},
"required": [ "event", "body" ]
}]
},
"ContinuedEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that the execution of the debuggee has continued.\nPlease note: a debug adapter is not expected to send this event in response to a request that implies that execution continues, e.g. 'launch' or 'continue'.\nIt is only necessary to send a 'continued' event if there was no previous request that implied this.",
"properties": {
"event": {
"type": "string",
"enum": [ "continued" ]
},
"body": {
"type": "object",
"properties": {
"threadId": {
"type": "integer",
"description": "The thread which was continued."
},
"allThreadsContinued": {
"type": "boolean",
"description": "If 'allThreadsContinued' is true, a debug adapter can announce that all threads have continued."
}
},
"required": [ "threadId" ]
}
},
"required": [ "event", "body" ]
}]
},
"ExitedEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that the debuggee has exited and returns its exit code.",
"properties": {
"event": {
"type": "string",
"enum": [ "exited" ]
},
"body": {
"type": "object",
"properties": {
"exitCode": {
"type": "integer",
"description": "The exit code returned from the debuggee."
}
},
"required": [ "exitCode" ]
}
},
"required": [ "event", "body" ]
}]
},
"TerminatedEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that debugging of the debuggee has terminated. This does **not** mean that the debuggee itself has exited.",
"properties": {
"event": {
"type": "string",
"enum": [ "terminated" ]
},
"body": {
"type": "object",
"properties": {
"restart": {
"type": [ "array", "boolean", "integer", "null", "number", "object", "string" ],
"description": "A debug adapter may set 'restart' to true (or to an arbitrary object) to request that the front end restarts the session.\nThe value is not interpreted by the client and passed unmodified as an attribute '__restart' to the 'launch' and 'attach' requests."
}
}
}
},
"required": [ "event" ]
}]
},
"ThreadEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that a thread has started or exited.",
"properties": {
"event": {
"type": "string",
"enum": [ "thread" ]
},
"body": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "The reason for the event.",
"_enum": [ "started", "exited" ]
},
"threadId": {
"type": "integer",
"description": "The identifier of the thread."
}
},
"required": ["reason", "threadId"]
}
},
"required": [ "event", "body" ]
}]
},
"OutputEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that the target has produced some output.",
"properties": {
"event": {
"type": "string",
"enum": [ "output" ]
},
"body": {
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "The output category. If not specified, 'console' is assumed.",
"_enum": [ "console", "stdout", "stderr", "telemetry" ]
},
"output": {
"type": "string",
"description": "The output to report."
},
"group": {
"type": "string",
"description": "Support for keeping an output log organized by grouping related messages.",
"enum": [ "start", "startCollapsed", "end" ],
"enumDescriptions": [
"Start a new group in expanded mode. Subsequent output events are members of the group and should be shown indented.\nThe 'output' attribute becomes the name of the group and is not indented.",
"Start a new group in collapsed mode. Subsequent output events are members of the group and should be shown indented (as soon as the group is expanded).\nThe 'output' attribute becomes the name of the group and is not indented.",
"End the current group and decreases the indentation of subsequent output events.\nA non empty 'output' attribute is shown as the unindented end of the group."
]
},
"variablesReference": {
"type": "integer",
"description": "If an attribute 'variablesReference' exists and its value is > 0, the output contains objects which can be retrieved by passing 'variablesReference' to the 'variables' request. The value should be less than or equal to 2147483647 (2^31-1)."
},
"source": {
"$ref": "#/definitions/Source",
"description": "An optional source location where the output was produced."
},
"line": {
"type": "integer",
"description": "An optional source location line where the output was produced."
},
"column": {
"type": "integer",
"description": "An optional source location column where the output was produced."
},
"data": {
"type": [ "array", "boolean", "integer", "null", "number" , "object", "string" ],
"description": "Optional data to report. For the 'telemetry' category the data will be sent to telemetry, for the other categories the data is shown in JSON format."
}
},
"required": ["output"]
}
},
"required": [ "event", "body" ]
}]
},
"BreakpointEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that some information about a breakpoint has changed.",
"properties": {
"event": {
"type": "string",
"enum": [ "breakpoint" ]
},
"body": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "The reason for the event.",
"_enum": [ "changed", "new", "removed" ]
},
"breakpoint": {
"$ref": "#/definitions/Breakpoint",
"description": "The 'id' attribute is used to find the target breakpoint and the other attributes are used as the new values."
}
},
"required": [ "reason", "breakpoint" ]
}
},
"required": [ "event", "body" ]
}]
},
"ModuleEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that some information about a module has changed.",
"properties": {
"event": {
"type": "string",
"enum": [ "module" ]
},
"body": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "The reason for the event.",
"enum": [ "new", "changed", "removed" ]
},
"module": {
"$ref": "#/definitions/Module",
"description": "The new, changed, or removed module. In case of 'removed' only the module id is used."
}
},
"required": [ "reason", "module" ]
}
},
"required": [ "event", "body" ]
}]
},
"LoadedSourceEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that some source has been added, changed, or removed from the set of all loaded sources.",
"properties": {
"event": {
"type": "string",
"enum": [ "loadedSource" ]
},
"body": {
"type": "object",
"properties": {
"reason": {
"type": "string",
"description": "The reason for the event.",
"enum": [ "new", "changed", "removed" ]
},
"source": {
"$ref": "#/definitions/Source",
"description": "The new, changed, or removed source."
}
},
"required": [ "reason", "source" ]
}
},
"required": [ "event", "body" ]
}]
},
"ProcessEvent": {
"allOf": [
{ "$ref": "#/definitions/Event" },
{
"type": "object",
"description": "The event indicates that the debugger has begun debugging a new process. Either one that it has launched, or one that it has attached to.",
"properties": {
"event": {
"type": "string",
"enum": [ "process" ]
},
"body": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The logical name of the process. This is usually the full path to process's executable file. Example: /home/example/myproj/program.js."
},
"systemProcessId": {
"type": "integer",
"description": "The system process id of the debugged process. This property will be missing for non-system processes."
},
"isLocalProcess": {
"type": "boolean",
"description": "If true, the process is running on the same computer as the debug adapter."
},
"startMethod": {
"type": "string",
"enum": [ "launch", "attach", "attachForSuspendedLaunch" ],
"description": "Describes how the debug engine started debugging this process.",
"enumDescriptions": [
"Process was launched under the debugger.",
"Debugger attached to an existing process.",
"A project launcher component has launched a new process in a suspended state and then asked the debugger to attach."
]
},
"pointerSize": {
"type": "integer",
"description": "The size of a pointer or address for this process, in bits. This value may be used by clients when formatting addresses for display."
}
},
"required": [ "name" ]
}
},
"required": [ "event", "body" ]
}
]
},
"CapabilitiesEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event indicates that one or more capabilities have changed.\nSince the capabilities are dependent on the frontend and its UI, it might not be possible to change that at random times (or too late).\nConsequently this event has a hint characteristic: a frontend can only be expected to make a 'best effort' in honouring individual capabilities but there are no guarantees.\nOnly changed capabilities need to be included, all other capabilities keep their values.",
"properties": {
"event": {
"type": "string",
"enum": [ "capabilities" ]
},
"body": {
"type": "object",
"properties": {
"capabilities": {
"$ref": "#/definitions/Capabilities",
"description": "The set of updated capabilities."
}
},
"required": [ "capabilities" ]
}
},
"required": [ "event", "body" ]
}]
},
"ProgressStartEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event signals that a long running operation is about to start and\nprovides additional information for the client to set up a corresponding progress and cancellation UI.\nThe client is free to delay the showing of the UI in order to reduce flicker.\nThis event should only be sent if the client has passed the value true for the 'supportsProgressReporting' capability of the 'initialize' request.",
"properties": {
"event": {
"type": "string",
"enum": [ "progressStart" ]
},
"body": {
"type": "object",
"properties": {
"progressId": {
"type": "string",
"description": "An ID that must be used in subsequent 'progressUpdate' and 'progressEnd' events to make them refer to the same progress reporting.\nIDs must be unique within a debug session."
},
"title": {
"type": "string",
"description": "Mandatory (short) title of the progress reporting. Shown in the UI to describe the long running operation."
},
"requestId": {
"type": "integer",
"description": "The request ID that this progress report is related to. If specified a debug adapter is expected to emit\nprogress events for the long running request until the request has been either completed or cancelled.\nIf the request ID is omitted, the progress report is assumed to be related to some general activity of the debug adapter."
},
"cancellable": {
"type": "boolean",
"description": "If true, the request that reports progress may be canceled with a 'cancel' request.\nSo this property basically controls whether the client should use UX that supports cancellation.\nClients that don't support cancellation are allowed to ignore the setting."
},
"message": {
"type": "string",
"description": "Optional, more detailed progress message."
},
"percentage": {
"type": "number",
"description": "Optional progress percentage to display (value range: 0 to 100). If omitted no percentage will be shown."
}
},
"required": [ "progressId", "title" ]
}
},
"required": [ "event", "body" ]
}]
},
"ProgressUpdateEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event signals that the progress reporting needs to updated with a new message and/or percentage.\nThe client does not have to update the UI immediately, but the clients needs to keep track of the message and/or percentage values.\nThis event should only be sent if the client has passed the value true for the 'supportsProgressReporting' capability of the 'initialize' request.",
"properties": {
"event": {
"type": "string",
"enum": [ "progressUpdate" ]
},
"body": {
"type": "object",
"properties": {
"progressId": {
"type": "string",
"description": "The ID that was introduced in the initial 'progressStart' event."
},
"message": {
"type": "string",
"description": "Optional, more detailed progress message. If omitted, the previous message (if any) is used."
},
"percentage": {
"type": "number",
"description": "Optional progress percentage to display (value range: 0 to 100). If omitted no percentage will be shown."
}
},
"required": [ "progressId" ]
}
},
"required": [ "event", "body" ]
}]
},
"ProgressEndEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "The event signals the end of the progress reporting with an optional final message.\nThis event should only be sent if the client has passed the value true for the 'supportsProgressReporting' capability of the 'initialize' request.",
"properties": {
"event": {
"type": "string",
"enum": [ "progressEnd" ]
},
"body": {
"type": "object",
"properties": {
"progressId": {
"type": "string",
"description": "The ID that was introduced in the initial 'ProgressStartEvent'."
},
"message": {
"type": "string",
"description": "Optional, more detailed progress message. If omitted, the previous message (if any) is used."
}
},
"required": [ "progressId" ]
}
},
"required": [ "event", "body" ]
}]
},
"InvalidatedEvent": {
"allOf": [ { "$ref": "#/definitions/Event" }, {
"type": "object",
"description": "This event signals that some state in the debug adapter has changed and requires that the client needs to re-render the data snapshot previously requested.\nDebug adapters do not have to emit this event for runtime changes like stopped or thread events because in that case the client refetches the new state anyway. But the event can be used for example to refresh the UI after rendering formatting has changed in the debug adapter.\nThis event should only be sent if the debug adapter has received a value true for the 'supportsInvalidatedEvent' capability of the 'initialize' request.",
"properties": {
"event": {
"type": "string",
"enum": [ "invalidated" ]
},
"body": {
"type": "object",
"properties": {
"areas": {
"type": "array",
"description": "Optional set of logical areas that got invalidated. This property has a hint characteristic: a client can only be expected to make a 'best effort' in honouring the areas but there are no guarantees. If this property is missing, empty, or if values are not understand the client should assume a single value 'all'.",
"items": {
"$ref": "#/definitions/InvalidatedAreas"
}
},
"threadId": {
"type": "integer",
"description": "If specified, the client only needs to refetch data related to this thread."
},
"stackFrameId": {
"type": "integer",
"description": "If specified, the client only needs to refetch data related to this stack frame (and the 'threadId' is ignored)."
}
}
}
},
"required": [ "event", "body" ]
}]
},
"RunInTerminalRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"title": "Reverse Requests",
"description": "This optional request is sent from the debug adapter to the client to run a command in a terminal.\nThis is typically used to launch the debuggee in a terminal provided by the client.\nThis request should only be called if the client has passed the value true for the 'supportsRunInTerminalRequest' capability of the 'initialize' request.",
"properties": {
"command": {
"type": "string",
"enum": [ "runInTerminal" ]
},
"arguments": {
"$ref": "#/definitions/RunInTerminalRequestArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"RunInTerminalRequestArguments": {
"type": "object",
"description": "Arguments for 'runInTerminal' request.",
"properties": {
"kind": {
"type": "string",
"enum": [ "integrated", "external" ],
"description": "What kind of terminal to launch."
},
"title": {
"type": "string",
"description": "Optional title of the terminal."
},
"cwd": {
"type": "string",
"description": "Working directory for the command. For non-empty, valid paths this typically results in execution of a change directory command."
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of arguments. The first argument is the command to run."
},
"env": {
"type": "object",
"description": "Environment key-value pairs that are added to or removed from the default environment.",
"additionalProperties": {
"type": [ "string", "null" ],
"description": "Proper values must be strings. A value of 'null' removes the variable from the environment."
}
}
},
"required": [ "args", "cwd" ]
},
"RunInTerminalResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'runInTerminal' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"processId": {
"type": "integer",
"description": "The process ID. The value should be less than or equal to 2147483647 (2^31-1)."
},
"shellProcessId": {
"type": "integer",
"description": "The process ID of the terminal shell. The value should be less than or equal to 2147483647 (2^31-1)."
}
}
}
},
"required": [ "body" ]
}]
},
"InitializeRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"title": "Requests",
"description": "The 'initialize' request is sent as the first request from the client to the debug adapter\nin order to configure it with client capabilities and to retrieve capabilities from the debug adapter.\nUntil the debug adapter has responded to with an 'initialize' response, the client must not send any additional requests or events to the debug adapter.\nIn addition the debug adapter is not allowed to send any requests or events to the client until it has responded with an 'initialize' response.\nThe 'initialize' request may only be sent once.",
"properties": {
"command": {
"type": "string",
"enum": [ "initialize" ]
},
"arguments": {
"$ref": "#/definitions/InitializeRequestArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"InitializeRequestArguments": {
"type": "object",
"description": "Arguments for 'initialize' request.",
"properties": {
"clientID": {
"type": "string",
"description": "The ID of the (frontend) client using this adapter."
},
"clientName": {
"type": "string",
"description": "The human readable name of the (frontend) client using this adapter."
},
"adapterID": {
"type": "string",
"description": "The ID of the debug adapter."
},
"locale": {
"type": "string",
"description": "The ISO-639 locale of the (frontend) client using this adapter, e.g. en-US or de-CH."
},
"linesStartAt1": {
"type": "boolean",
"description": "If true all line numbers are 1-based (default)."
},
"columnsStartAt1": {
"type": "boolean",
"description": "If true all column numbers are 1-based (default)."
},
"pathFormat": {
"type": "string",
"_enum": [ "path", "uri" ],
"description": "Determines in what format paths are specified. The default is 'path', which is the native format."
},
"supportsVariableType": {
"type": "boolean",
"description": "Client supports the optional type attribute for variables."
},
"supportsVariablePaging": {
"type": "boolean",
"description": "Client supports the paging of variables."
},
"supportsRunInTerminalRequest": {
"type": "boolean",
"description": "Client supports the runInTerminal request."
},
"supportsMemoryReferences": {
"type": "boolean",
"description": "Client supports memory references."
},
"supportsProgressReporting": {
"type": "boolean",
"description": "Client supports progress reporting."
},
"supportsInvalidatedEvent": {
"type": "boolean",
"description": "Client supports the invalidated event."
}
},
"required": [ "adapterID" ]
},
"InitializeResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'initialize' request.",
"properties": {
"body": {
"$ref": "#/definitions/Capabilities",
"description": "The capabilities of this debug adapter."
}
}
}]
},
"ConfigurationDoneRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "This optional request indicates that the client has finished initialization of the debug adapter.\nSo it is the last request in the sequence of configuration requests (which was started by the 'initialized' event).\nClients should only call this request if the capability 'supportsConfigurationDoneRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "configurationDone" ]
},
"arguments": {
"$ref": "#/definitions/ConfigurationDoneArguments"
}
},
"required": [ "command" ]
}]
},
"ConfigurationDoneArguments": {
"type": "object",
"description": "Arguments for 'configurationDone' request."
},
"ConfigurationDoneResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'configurationDone' request. This is just an acknowledgement, so no body field is required."
}]
},
"LaunchRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "This launch request is sent from the client to the debug adapter to start the debuggee with or without debugging (if 'noDebug' is true).\nSince launching is debugger/runtime specific, the arguments for this request are not part of this specification.",
"properties": {
"command": {
"type": "string",
"enum": [ "launch" ]
},
"arguments": {
"$ref": "#/definitions/LaunchRequestArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"LaunchRequestArguments": {
"type": "object",
"description": "Arguments for 'launch' request. Additional attributes are implementation specific.",
"properties": {
"noDebug": {
"type": "boolean",
"description": "If noDebug is true the launch request should launch the program without enabling debugging."
},
"__restart": {
"type": [ "array", "boolean", "integer", "null", "number", "object", "string" ],
"description": "Optional data from the previous, restarted session.\nThe data is sent as the 'restart' attribute of the 'terminated' event.\nThe client should leave the data intact."
}
}
},
"LaunchResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'launch' request. This is just an acknowledgement, so no body field is required."
}]
},
"AttachRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The attach request is sent from the client to the debug adapter to attach to a debuggee that is already running.\nSince attaching is debugger/runtime specific, the arguments for this request are not part of this specification.",
"properties": {
"command": {
"type": "string",
"enum": [ "attach" ]
},
"arguments": {
"$ref": "#/definitions/AttachRequestArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"AttachRequestArguments": {
"type": "object",
"description": "Arguments for 'attach' request. Additional attributes are implementation specific.",
"properties": {
"__restart": {
"type": [ "array", "boolean", "integer", "null", "number", "object", "string" ],
"description": "Optional data from the previous, restarted session.\nThe data is sent as the 'restart' attribute of the 'terminated' event.\nThe client should leave the data intact."
}
}
},
"AttachResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'attach' request. This is just an acknowledgement, so no body field is required."
}]
},
"RestartRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Restarts a debug session. Clients should only call this request if the capability 'supportsRestartRequest' is true.\nIf the capability is missing or has the value false, a typical client will emulate 'restart' by terminating the debug adapter first and then launching it anew.",
"properties": {
"command": {
"type": "string",
"enum": [ "restart" ]
},
"arguments": {
"$ref": "#/definitions/RestartArguments"
}
},
"required": [ "command" ]
}]
},
"RestartArguments": {
"type": "object",
"description": "Arguments for 'restart' request.",
"properties": {
"arguments": {
"oneOf": [
{ "$ref": "#/definitions/LaunchRequestArguments" },
{ "$ref": "#/definitions/AttachRequestArguments" }
],
"description": "The latest version of the 'launch' or 'attach' configuration."
}
}
},
"RestartResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'restart' request. This is just an acknowledgement, so no body field is required."
}]
},
"DisconnectRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The 'disconnect' request is sent from the client to the debug adapter in order to stop debugging.\nIt asks the debug adapter to disconnect from the debuggee and to terminate the debug adapter.\nIf the debuggee has been started with the 'launch' request, the 'disconnect' request terminates the debuggee.\nIf the 'attach' request was used to connect to the debuggee, 'disconnect' does not terminate the debuggee.\nThis behavior can be controlled with the 'terminateDebuggee' argument (if supported by the debug adapter).",
"properties": {
"command": {
"type": "string",
"enum": [ "disconnect" ]
},
"arguments": {
"$ref": "#/definitions/DisconnectArguments"
}
},
"required": [ "command" ]
}]
},
"DisconnectArguments": {
"type": "object",
"description": "Arguments for 'disconnect' request.",
"properties": {
"restart": {
"type": "boolean",
"description": "A value of true indicates that this 'disconnect' request is part of a restart sequence."
},
"terminateDebuggee": {
"type": "boolean",
"description": "Indicates whether the debuggee should be terminated when the debugger is disconnected.\nIf unspecified, the debug adapter is free to do whatever it thinks is best.\nThe attribute is only honored by a debug adapter if the capability 'supportTerminateDebuggee' is true."
},
"suspendDebuggee": {
"type": "boolean",
"description": "Indicates whether the debuggee should stay suspended when the debugger is disconnected.\nIf unspecified, the debuggee should resume execution.\nThe attribute is only honored by a debug adapter if the capability 'supportSuspendDebuggee' is true."
}
}
},
"DisconnectResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'disconnect' request. This is just an acknowledgement, so no body field is required."
}]
},
"TerminateRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The 'terminate' request is sent from the client to the debug adapter in order to give the debuggee a chance for terminating itself.\nClients should only call this request if the capability 'supportsTerminateRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "terminate" ]
},
"arguments": {
"$ref": "#/definitions/TerminateArguments"
}
},
"required": [ "command" ]
}]
},
"TerminateArguments": {
"type": "object",
"description": "Arguments for 'terminate' request.",
"properties": {
"restart": {
"type": "boolean",
"description": "A value of true indicates that this 'terminate' request is part of a restart sequence."
}
}
},
"TerminateResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'terminate' request. This is just an acknowledgement, so no body field is required."
}]
},
"BreakpointLocationsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The 'breakpointLocations' request returns all possible locations for source breakpoints in a given range.\nClients should only call this request if the capability 'supportsBreakpointLocationsRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "breakpointLocations" ]
},
"arguments": {
"$ref": "#/definitions/BreakpointLocationsArguments"
}
},
"required": [ "command" ]
}]
},
"BreakpointLocationsArguments": {
"type": "object",
"description": "Arguments for 'breakpointLocations' request.",
"properties": {
"source": {
"$ref": "#/definitions/Source",
"description": "The source location of the breakpoints; either 'source.path' or 'source.reference' must be specified."
},
"line": {
"type": "integer",
"description": "Start line of range to search possible breakpoint locations in. If only the line is specified, the request returns all possible locations in that line."
},
"column": {
"type": "integer",
"description": "Optional start column of range to search possible breakpoint locations in. If no start column is given, the first column in the start line is assumed."
},
"endLine": {
"type": "integer",
"description": "Optional end line of range to search possible breakpoint locations in. If no end line is given, then the end line is assumed to be the start line."
},
"endColumn": {
"type": "integer",
"description": "Optional end column of range to search possible breakpoint locations in. If no end column is given, then it is assumed to be in the last column of the end line."
}
},
"required": [ "source", "line" ]
},
"BreakpointLocationsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'breakpointLocations' request.\nContains possible locations for source breakpoints.",
"properties": {
"body": {
"type": "object",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/BreakpointLocation"
},
"description": "Sorted set of possible breakpoint locations."
}
},
"required": [ "breakpoints" ]
}
},
"required": [ "body" ]
}]
},
"SetBreakpointsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Sets multiple breakpoints for a single source and clears all previous breakpoints in that source.\nTo clear all breakpoint for a source, specify an empty array.\nWhen a breakpoint is hit, a 'stopped' event (with reason 'breakpoint') is generated.",
"properties": {
"command": {
"type": "string",
"enum": [ "setBreakpoints" ]
},
"arguments": {
"$ref": "#/definitions/SetBreakpointsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetBreakpointsArguments": {
"type": "object",
"description": "Arguments for 'setBreakpoints' request.",
"properties": {
"source": {
"$ref": "#/definitions/Source",
"description": "The source location of the breakpoints; either 'source.path' or 'source.reference' must be specified."
},
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/SourceBreakpoint"
},
"description": "The code locations of the breakpoints."
},
"lines": {
"type": "array",
"items": {
"type": "integer"
},
"description": "Deprecated: The code locations of the breakpoints."
},
"sourceModified": {
"type": "boolean",
"description": "A value of true indicates that the underlying source has been modified which results in new breakpoint locations."
}
},
"required": [ "source" ]
},
"SetBreakpointsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'setBreakpoints' request.\nReturned is information about each breakpoint created by this request.\nThis includes the actual code location and whether the breakpoint could be verified.\nThe breakpoints returned are in the same order as the elements of the 'breakpoints'\n(or the deprecated 'lines') array in the arguments.",
"properties": {
"body": {
"type": "object",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/Breakpoint"
},
"description": "Information about the breakpoints.\nThe array elements are in the same order as the elements of the 'breakpoints' (or the deprecated 'lines') array in the arguments."
}
},
"required": [ "breakpoints" ]
}
},
"required": [ "body" ]
}]
},
"SetFunctionBreakpointsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Replaces all existing function breakpoints with new function breakpoints.\nTo clear all function breakpoints, specify an empty array.\nWhen a function breakpoint is hit, a 'stopped' event (with reason 'function breakpoint') is generated.\nClients should only call this request if the capability 'supportsFunctionBreakpoints' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "setFunctionBreakpoints" ]
},
"arguments": {
"$ref": "#/definitions/SetFunctionBreakpointsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetFunctionBreakpointsArguments": {
"type": "object",
"description": "Arguments for 'setFunctionBreakpoints' request.",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/FunctionBreakpoint"
},
"description": "The function names of the breakpoints."
}
},
"required": [ "breakpoints" ]
},
"SetFunctionBreakpointsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'setFunctionBreakpoints' request.\nReturned is information about each breakpoint created by this request.",
"properties": {
"body": {
"type": "object",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/Breakpoint"
},
"description": "Information about the breakpoints. The array elements correspond to the elements of the 'breakpoints' array."
}
},
"required": [ "breakpoints" ]
}
},
"required": [ "body" ]
}]
},
"SetExceptionBreakpointsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request configures the debuggers response to thrown exceptions.\nIf an exception is configured to break, a 'stopped' event is fired (with reason 'exception').\nClients should only call this request if the capability 'exceptionBreakpointFilters' returns one or more filters.",
"properties": {
"command": {
"type": "string",
"enum": [ "setExceptionBreakpoints" ]
},
"arguments": {
"$ref": "#/definitions/SetExceptionBreakpointsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetExceptionBreakpointsArguments": {
"type": "object",
"description": "Arguments for 'setExceptionBreakpoints' request.",
"properties": {
"filters": {
"type": "array",
"items": {
"type": "string"
},
"description": "Set of exception filters specified by their ID. The set of all possible exception filters is defined by the 'exceptionBreakpointFilters' capability. The 'filter' and 'filterOptions' sets are additive."
},
"filterOptions": {
"type": "array",
"items": {
"$ref": "#/definitions/ExceptionFilterOptions"
},
"description": "Set of exception filters and their options. The set of all possible exception filters is defined by the 'exceptionBreakpointFilters' capability. This attribute is only honored by a debug adapter if the capability 'supportsExceptionFilterOptions' is true. The 'filter' and 'filterOptions' sets are additive."
},
"exceptionOptions": {
"type": "array",
"items": {
"$ref": "#/definitions/ExceptionOptions"
},
"description": "Configuration options for selected exceptions.\nThe attribute is only honored by a debug adapter if the capability 'supportsExceptionOptions' is true."
}
},
"required": [ "filters" ]
},
"SetExceptionBreakpointsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'setExceptionBreakpoints' request.\nThe response contains an array of Breakpoint objects with information about each exception breakpoint or filter. The Breakpoint objects are in the same order as the elements of the 'filters', 'filterOptions', 'exceptionOptions' arrays given as arguments. If both 'filters' and 'filterOptions' are given, the returned array must start with 'filters' information first, followed by 'filterOptions' information.\nThe mandatory 'verified' property of a Breakpoint object signals whether the exception breakpoint or filter could be successfully created and whether the optional condition or hit count expressions are valid. In case of an error the 'message' property explains the problem. An optional 'id' property can be used to introduce a unique ID for the exception breakpoint or filter so that it can be updated subsequently by sending breakpoint events.\nFor backward compatibility both the 'breakpoints' array and the enclosing 'body' are optional. If these elements are missing a client will not be able to show problems for individual exception breakpoints or filters.",
"properties": {
"body": {
"type": "object",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/Breakpoint"
},
"description": "Information about the exception breakpoints or filters.\nThe breakpoints returned are in the same order as the elements of the 'filters', 'filterOptions', 'exceptionOptions' arrays in the arguments. If both 'filters' and 'filterOptions' are given, the returned array must start with 'filters' information first, followed by 'filterOptions' information."
}
}
}
}
}]
},
"DataBreakpointInfoRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Obtains information on a possible data breakpoint that could be set on an expression or variable.\nClients should only call this request if the capability 'supportsDataBreakpoints' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "dataBreakpointInfo" ]
},
"arguments": {
"$ref": "#/definitions/DataBreakpointInfoArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"DataBreakpointInfoArguments": {
"type": "object",
"description": "Arguments for 'dataBreakpointInfo' request.",
"properties": {
"variablesReference": {
"type": "integer",
"description": "Reference to the Variable container if the data breakpoint is requested for a child of the container."
},
"name": {
"type": "string",
"description": "The name of the Variable's child to obtain data breakpoint information for.\nIf variablesReference isn’t provided, this can be an expression."
}
},
"required": [ "name" ]
},
"DataBreakpointInfoResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'dataBreakpointInfo' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"dataId": {
"type": [ "string", "null" ],
"description": "An identifier for the data on which a data breakpoint can be registered with the setDataBreakpoints request or null if no data breakpoint is available."
},
"description": {
"type": "string",
"description": "UI string that describes on what data the breakpoint is set on or why a data breakpoint is not available."
},
"accessTypes": {
"type": "array",
"items": {
"$ref": "#/definitions/DataBreakpointAccessType"
},
"description": "Optional attribute listing the available access types for a potential data breakpoint. A UI frontend could surface this information."
},
"canPersist": {
"type": "boolean",
"description": "Optional attribute indicating that a potential data breakpoint could be persisted across sessions."
}
},
"required": [ "dataId", "description" ]
}
},
"required": [ "body" ]
}]
},
"SetDataBreakpointsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Replaces all existing data breakpoints with new data breakpoints.\nTo clear all data breakpoints, specify an empty array.\nWhen a data breakpoint is hit, a 'stopped' event (with reason 'data breakpoint') is generated.\nClients should only call this request if the capability 'supportsDataBreakpoints' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "setDataBreakpoints" ]
},
"arguments": {
"$ref": "#/definitions/SetDataBreakpointsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetDataBreakpointsArguments": {
"type": "object",
"description": "Arguments for 'setDataBreakpoints' request.",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/DataBreakpoint"
},
"description": "The contents of this array replaces all existing data breakpoints. An empty array clears all data breakpoints."
}
},
"required": [ "breakpoints" ]
},
"SetDataBreakpointsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'setDataBreakpoints' request.\nReturned is information about each breakpoint created by this request.",
"properties": {
"body": {
"type": "object",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/Breakpoint"
},
"description": "Information about the data breakpoints. The array elements correspond to the elements of the input argument 'breakpoints' array."
}
},
"required": [ "breakpoints" ]
}
},
"required": [ "body" ]
}]
},
"SetInstructionBreakpointsRequest": {
"allOf": [
{ "$ref": "#/definitions/Request" },
{
"type": "object",
"description": "Replaces all existing instruction breakpoints. Typically, instruction breakpoints would be set from a diassembly window. \nTo clear all instruction breakpoints, specify an empty array.\nWhen an instruction breakpoint is hit, a 'stopped' event (with reason 'instruction breakpoint') is generated.\nClients should only call this request if the capability 'supportsInstructionBreakpoints' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "setInstructionBreakpoints" ]
},
"arguments": {
"$ref": "#/definitions/SetInstructionBreakpointsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetInstructionBreakpointsArguments": {
"type": "object",
"description": "Arguments for 'setInstructionBreakpoints' request",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/InstructionBreakpoint"
},
"description": "The instruction references of the breakpoints"
}
},
"required": ["breakpoints"]
},
"SetInstructionBreakpointsResponse": {
"allOf": [
{ "$ref": "#/definitions/Response" },
{
"type": "object",
"description": "Response to 'setInstructionBreakpoints' request",
"properties": {
"body": {
"type": "object",
"properties": {
"breakpoints": {
"type": "array",
"items": {
"$ref": "#/definitions/Breakpoint"
},
"description": "Information about the breakpoints. The array elements correspond to the elements of the 'breakpoints' array."
}
},
"required": [ "breakpoints" ]
}
},
"required": [ "body" ]
}]
},
"ContinueRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request starts the debuggee to run again.",
"properties": {
"command": {
"type": "string",
"enum": [ "continue" ]
},
"arguments": {
"$ref": "#/definitions/ContinueArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"ContinueArguments": {
"type": "object",
"description": "Arguments for 'continue' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Continue execution for the specified thread (if possible).\nIf the backend cannot continue on a single thread but will continue on all threads, it should set the 'allThreadsContinued' attribute in the response to true."
}
},
"required": [ "threadId" ]
},
"ContinueResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'continue' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"allThreadsContinued": {
"type": "boolean",
"description": "If true, the 'continue' request has ignored the specified thread and continued all threads instead.\nIf this attribute is missing a value of 'true' is assumed for backward compatibility."
}
}
}
},
"required": [ "body" ]
}]
},
"NextRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request starts the debuggee to run again for one step.\nThe debug adapter first sends the response and then a 'stopped' event (with reason 'step') after the step has completed.",
"properties": {
"command": {
"type": "string",
"enum": [ "next" ]
},
"arguments": {
"$ref": "#/definitions/NextArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"NextArguments": {
"type": "object",
"description": "Arguments for 'next' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Execute 'next' for this thread."
},
"granularity": {
"$ref": "#/definitions/SteppingGranularity",
"description": "Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed."
}
},
"required": [ "threadId" ]
},
"NextResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'next' request. This is just an acknowledgement, so no body field is required."
}]
},
"StepInRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request starts the debuggee to step into a function/method if possible.\nIf it cannot step into a target, 'stepIn' behaves like 'next'.\nThe debug adapter first sends the response and then a 'stopped' event (with reason 'step') after the step has completed.\nIf there are multiple function/method calls (or other targets) on the source line,\nthe optional argument 'targetId' can be used to control into which target the 'stepIn' should occur.\nThe list of possible targets for a given source line can be retrieved via the 'stepInTargets' request.",
"properties": {
"command": {
"type": "string",
"enum": [ "stepIn" ]
},
"arguments": {
"$ref": "#/definitions/StepInArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"StepInArguments": {
"type": "object",
"description": "Arguments for 'stepIn' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Execute 'stepIn' for this thread."
},
"targetId": {
"type": "integer",
"description": "Optional id of the target to step into."
},
"granularity": {
"$ref": "#/definitions/SteppingGranularity",
"description": "Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed."
}
},
"required": [ "threadId" ]
},
"StepInResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'stepIn' request. This is just an acknowledgement, so no body field is required."
}]
},
"StepOutRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request starts the debuggee to run again for one step.\nThe debug adapter first sends the response and then a 'stopped' event (with reason 'step') after the step has completed.",
"properties": {
"command": {
"type": "string",
"enum": [ "stepOut" ]
},
"arguments": {
"$ref": "#/definitions/StepOutArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"StepOutArguments": {
"type": "object",
"description": "Arguments for 'stepOut' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Execute 'stepOut' for this thread."
},
"granularity": {
"$ref": "#/definitions/SteppingGranularity",
"description": "Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed."
}
},
"required": [ "threadId" ]
},
"StepOutResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'stepOut' request. This is just an acknowledgement, so no body field is required."
}]
},
"StepBackRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request starts the debuggee to run one step backwards.\nThe debug adapter first sends the response and then a 'stopped' event (with reason 'step') after the step has completed.\nClients should only call this request if the capability 'supportsStepBack' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "stepBack" ]
},
"arguments": {
"$ref": "#/definitions/StepBackArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"StepBackArguments": {
"type": "object",
"description": "Arguments for 'stepBack' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Execute 'stepBack' for this thread."
},
"granularity": {
"$ref": "#/definitions/SteppingGranularity",
"description": "Optional granularity to step. If no granularity is specified, a granularity of 'statement' is assumed."
}
},
"required": [ "threadId" ]
},
"StepBackResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'stepBack' request. This is just an acknowledgement, so no body field is required."
}]
},
"ReverseContinueRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request starts the debuggee to run backward.\nClients should only call this request if the capability 'supportsStepBack' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "reverseContinue" ]
},
"arguments": {
"$ref": "#/definitions/ReverseContinueArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"ReverseContinueArguments": {
"type": "object",
"description": "Arguments for 'reverseContinue' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Execute 'reverseContinue' for this thread."
}
},
"required": [ "threadId" ]
},
"ReverseContinueResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'reverseContinue' request. This is just an acknowledgement, so no body field is required."
}]
},
"RestartFrameRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request restarts execution of the specified stackframe.\nThe debug adapter first sends the response and then a 'stopped' event (with reason 'restart') after the restart has completed.\nClients should only call this request if the capability 'supportsRestartFrame' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "restartFrame" ]
},
"arguments": {
"$ref": "#/definitions/RestartFrameArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"RestartFrameArguments": {
"type": "object",
"description": "Arguments for 'restartFrame' request.",
"properties": {
"frameId": {
"type": "integer",
"description": "Restart this stackframe."
}
},
"required": [ "frameId" ]
},
"RestartFrameResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'restartFrame' request. This is just an acknowledgement, so no body field is required."
}]
},
"GotoRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request sets the location where the debuggee will continue to run.\nThis makes it possible to skip the execution of code or to executed code again.\nThe code between the current location and the goto target is not executed but skipped.\nThe debug adapter first sends the response and then a 'stopped' event with reason 'goto'.\nClients should only call this request if the capability 'supportsGotoTargetsRequest' is true (because only then goto targets exist that can be passed as arguments).",
"properties": {
"command": {
"type": "string",
"enum": [ "goto" ]
},
"arguments": {
"$ref": "#/definitions/GotoArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"GotoArguments": {
"type": "object",
"description": "Arguments for 'goto' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Set the goto target for this thread."
},
"targetId": {
"type": "integer",
"description": "The location where the debuggee will continue to run."
}
},
"required": [ "threadId", "targetId" ]
},
"GotoResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'goto' request. This is just an acknowledgement, so no body field is required."
}]
},
"PauseRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request suspends the debuggee.\nThe debug adapter first sends the response and then a 'stopped' event (with reason 'pause') after the thread has been paused successfully.",
"properties": {
"command": {
"type": "string",
"enum": [ "pause" ]
},
"arguments": {
"$ref": "#/definitions/PauseArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"PauseArguments": {
"type": "object",
"description": "Arguments for 'pause' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Pause execution for this thread."
}
},
"required": [ "threadId" ]
},
"PauseResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'pause' request. This is just an acknowledgement, so no body field is required."
}]
},
"StackTraceRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request returns a stacktrace from the current execution state of a given thread.\nA client can request all stack frames by omitting the startFrame and levels arguments. For performance conscious clients and if the debug adapter's 'supportsDelayedStackTraceLoading' capability is true, stack frames can be retrieved in a piecemeal way with the startFrame and levels arguments. The response of the stackTrace request may contain a totalFrames property that hints at the total number of frames in the stack. If a client needs this total number upfront, it can issue a request for a single (first) frame and depending on the value of totalFrames decide how to proceed. In any case a client should be prepared to receive less frames than requested, which is an indication that the end of the stack has been reached.",
"properties": {
"command": {
"type": "string",
"enum": [ "stackTrace" ]
},
"arguments": {
"$ref": "#/definitions/StackTraceArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"StackTraceArguments": {
"type": "object",
"description": "Arguments for 'stackTrace' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Retrieve the stacktrace for this thread."
},
"startFrame": {
"type": "integer",
"description": "The index of the first frame to return; if omitted frames start at 0."
},
"levels": {
"type": "integer",
"description": "The maximum number of frames to return. If levels is not specified or 0, all frames are returned."
},
"format": {
"$ref": "#/definitions/StackFrameFormat",
"description": "Specifies details on how to format the stack frames.\nThe attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true."
}
},
"required": [ "threadId" ]
},
"StackTraceResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'stackTrace' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"stackFrames": {
"type": "array",
"items": {
"$ref": "#/definitions/StackFrame"
},
"description": "The frames of the stackframe. If the array has length zero, there are no stackframes available.\nThis means that there is no location information available."
},
"totalFrames": {
"type": "integer",
"description": "The total number of frames available in the stack. If omitted or if totalFrames is larger than the available frames, a client is expected to request frames until a request returns less frames than requested (which indicates the end of the stack). Returning monotonically increasing totalFrames values for subsequent requests can be used to enforce paging in the client."
}
},
"required": [ "stackFrames" ]
}
},
"required": [ "body" ]
}]
},
"ScopesRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request returns the variable scopes for a given stackframe ID.",
"properties": {
"command": {
"type": "string",
"enum": [ "scopes" ]
},
"arguments": {
"$ref": "#/definitions/ScopesArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"ScopesArguments": {
"type": "object",
"description": "Arguments for 'scopes' request.",
"properties": {
"frameId": {
"type": "integer",
"description": "Retrieve the scopes for this stackframe."
}
},
"required": [ "frameId" ]
},
"ScopesResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'scopes' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"scopes": {
"type": "array",
"items": {
"$ref": "#/definitions/Scope"
},
"description": "The scopes of the stackframe. If the array has length zero, there are no scopes available."
}
},
"required": [ "scopes" ]
}
},
"required": [ "body" ]
}]
},
"VariablesRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Retrieves all child variables for the given variable reference.\nAn optional filter can be used to limit the fetched children to either named or indexed children.",
"properties": {
"command": {
"type": "string",
"enum": [ "variables" ]
},
"arguments": {
"$ref": "#/definitions/VariablesArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"VariablesArguments": {
"type": "object",
"description": "Arguments for 'variables' request.",
"properties": {
"variablesReference": {
"type": "integer",
"description": "The Variable reference."
},
"filter": {
"type": "string",
"enum": [ "indexed", "named" ],
"description": "Optional filter to limit the child variables to either named or indexed. If omitted, both types are fetched."
},
"start": {
"type": "integer",
"description": "The index of the first variable to return; if omitted children start at 0."
},
"count": {
"type": "integer",
"description": "The number of variables to return. If count is missing or 0, all variables are returned."
},
"format": {
"$ref": "#/definitions/ValueFormat",
"description": "Specifies details on how to format the Variable values.\nThe attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true."
}
},
"required": [ "variablesReference" ]
},
"VariablesResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'variables' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"variables": {
"type": "array",
"items": {
"$ref": "#/definitions/Variable"
},
"description": "All (or a range) of variables for the given variable reference."
}
},
"required": [ "variables" ]
}
},
"required": [ "body" ]
}]
},
"SetVariableRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Set the variable with the given name in the variable container to a new value. Clients should only call this request if the capability 'supportsSetVariable' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "setVariable" ]
},
"arguments": {
"$ref": "#/definitions/SetVariableArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetVariableArguments": {
"type": "object",
"description": "Arguments for 'setVariable' request.",
"properties": {
"variablesReference": {
"type": "integer",
"description": "The reference of the variable container."
},
"name": {
"type": "string",
"description": "The name of the variable in the container."
},
"value": {
"type": "string",
"description": "The value of the variable."
},
"format": {
"$ref": "#/definitions/ValueFormat",
"description": "Specifies details on how to format the response value."
}
},
"required": [ "variablesReference", "name", "value" ]
},
"SetVariableResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'setVariable' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "The new value of the variable."
},
"type": {
"type": "string",
"description": "The type of the new value. Typically shown in the UI when hovering over the value."
},
"variablesReference": {
"type": "integer",
"description": "If variablesReference is > 0, the new value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"namedVariables": {
"type": "integer",
"description": "The number of named child variables.\nThe client can use this optional information to present the variables in a paged UI and fetch them in chunks.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"indexedVariables": {
"type": "integer",
"description": "The number of indexed child variables.\nThe client can use this optional information to present the variables in a paged UI and fetch them in chunks.\nThe value should be less than or equal to 2147483647 (2^31-1)."
}
},
"required": [ "value" ]
}
},
"required": [ "body" ]
}]
},
"SourceRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request retrieves the source code for a given source reference.",
"properties": {
"command": {
"type": "string",
"enum": [ "source" ]
},
"arguments": {
"$ref": "#/definitions/SourceArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SourceArguments": {
"type": "object",
"description": "Arguments for 'source' request.",
"properties": {
"source": {
"$ref": "#/definitions/Source",
"description": "Specifies the source content to load. Either source.path or source.sourceReference must be specified."
},
"sourceReference": {
"type": "integer",
"description": "The reference to the source. This is the same as source.sourceReference.\nThis is provided for backward compatibility since old backends do not understand the 'source' attribute."
}
},
"required": [ "sourceReference" ]
},
"SourceResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'source' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"content": {
"type": "string",
"description": "Content of the source reference."
},
"mimeType": {
"type": "string",
"description": "Optional content type (mime type) of the source."
}
},
"required": [ "content" ]
}
},
"required": [ "body" ]
}]
},
"ThreadsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request retrieves a list of all threads.",
"properties": {
"command": {
"type": "string",
"enum": [ "threads" ]
}
},
"required": [ "command" ]
}]
},
"ThreadsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'threads' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"threads": {
"type": "array",
"items": {
"$ref": "#/definitions/Thread"
},
"description": "All threads."
}
},
"required": [ "threads" ]
}
},
"required": [ "body" ]
}]
},
"TerminateThreadsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "The request terminates the threads with the given ids.\nClients should only call this request if the capability 'supportsTerminateThreadsRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "terminateThreads" ]
},
"arguments": {
"$ref": "#/definitions/TerminateThreadsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"TerminateThreadsArguments": {
"type": "object",
"description": "Arguments for 'terminateThreads' request.",
"properties": {
"threadIds": {
"type": "array",
"items": {
"type": "integer"
},
"description": "Ids of threads to be terminated."
}
}
},
"TerminateThreadsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'terminateThreads' request. This is just an acknowledgement, so no body field is required."
}]
},
"ModulesRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Modules can be retrieved from the debug adapter with this request which can either return all modules or a range of modules to support paging.\nClients should only call this request if the capability 'supportsModulesRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "modules" ]
},
"arguments": {
"$ref": "#/definitions/ModulesArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"ModulesArguments": {
"type": "object",
"description": "Arguments for 'modules' request.",
"properties": {
"startModule": {
"type": "integer",
"description": "The index of the first module to return; if omitted modules start at 0."
},
"moduleCount": {
"type": "integer",
"description": "The number of modules to return. If moduleCount is not specified or 0, all modules are returned."
}
}
},
"ModulesResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'modules' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"modules": {
"type": "array",
"items": {
"$ref": "#/definitions/Module"
},
"description": "All modules or range of modules."
},
"totalModules": {
"type": "integer",
"description": "The total number of modules available."
}
},
"required": [ "modules" ]
}
},
"required": [ "body" ]
}]
},
"LoadedSourcesRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Retrieves the set of all sources currently loaded by the debugged process.\nClients should only call this request if the capability 'supportsLoadedSourcesRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "loadedSources" ]
},
"arguments": {
"$ref": "#/definitions/LoadedSourcesArguments"
}
},
"required": [ "command" ]
}]
},
"LoadedSourcesArguments": {
"type": "object",
"description": "Arguments for 'loadedSources' request."
},
"LoadedSourcesResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'loadedSources' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"sources": {
"type": "array",
"items": {
"$ref": "#/definitions/Source"
},
"description": "Set of loaded sources."
}
},
"required": [ "sources" ]
}
},
"required": [ "body" ]
}]
},
"EvaluateRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Evaluates the given expression in the context of the top most stack frame.\nThe expression has access to any variables and arguments that are in scope.",
"properties": {
"command": {
"type": "string",
"enum": [ "evaluate" ]
},
"arguments": {
"$ref": "#/definitions/EvaluateArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"EvaluateArguments": {
"type": "object",
"description": "Arguments for 'evaluate' request.",
"properties": {
"expression": {
"type": "string",
"description": "The expression to evaluate."
},
"frameId": {
"type": "integer",
"description": "Evaluate the expression in the scope of this stack frame. If not specified, the expression is evaluated in the global scope."
},
"context": {
"type": "string",
"_enum": [ "watch", "repl", "hover", "clipboard" ],
"enumDescriptions": [
"evaluate is run in a watch.",
"evaluate is run from REPL console.",
"evaluate is run from a data hover.",
"evaluate is run to generate the value that will be stored in the clipboard.\nThe attribute is only honored by a debug adapter if the capability 'supportsClipboardContext' is true."
],
"description": "The context in which the evaluate request is run."
},
"format": {
"$ref": "#/definitions/ValueFormat",
"description": "Specifies details on how to format the Evaluate result.\nThe attribute is only honored by a debug adapter if the capability 'supportsValueFormattingOptions' is true."
}
},
"required": [ "expression" ]
},
"EvaluateResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'evaluate' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"result": {
"type": "string",
"description": "The result of the evaluate request."
},
"type": {
"type": "string",
"description": "The optional type of the evaluate result.\nThis attribute should only be returned by a debug adapter if the client has passed the value true for the 'supportsVariableType' capability of the 'initialize' request."
},
"presentationHint": {
"$ref": "#/definitions/VariablePresentationHint",
"description": "Properties of a evaluate result that can be used to determine how to render the result in the UI."
},
"variablesReference": {
"type": "integer",
"description": "If variablesReference is > 0, the evaluate result is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"namedVariables": {
"type": "integer",
"description": "The number of named child variables.\nThe client can use this optional information to present the variables in a paged UI and fetch them in chunks.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"indexedVariables": {
"type": "integer",
"description": "The number of indexed child variables.\nThe client can use this optional information to present the variables in a paged UI and fetch them in chunks.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"memoryReference": {
"type": "string",
"description": "Optional memory reference to a location appropriate for this result.\nFor pointer type eval results, this is generally a reference to the memory address contained in the pointer.\nThis attribute should be returned by a debug adapter if the client has passed the value true for the 'supportsMemoryReferences' capability of the 'initialize' request."
}
},
"required": [ "result", "variablesReference" ]
}
},
"required": [ "body" ]
}]
},
"SetExpressionRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Evaluates the given 'value' expression and assigns it to the 'expression' which must be a modifiable l-value.\nThe expressions have access to any variables and arguments that are in scope of the specified frame.\nClients should only call this request if the capability 'supportsSetExpression' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "setExpression" ]
},
"arguments": {
"$ref": "#/definitions/SetExpressionArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"SetExpressionArguments": {
"type": "object",
"description": "Arguments for 'setExpression' request.",
"properties": {
"expression": {
"type": "string",
"description": "The l-value expression to assign to."
},
"value": {
"type": "string",
"description": "The value expression to assign to the l-value expression."
},
"frameId": {
"type": "integer",
"description": "Evaluate the expressions in the scope of this stack frame. If not specified, the expressions are evaluated in the global scope."
},
"format": {
"$ref": "#/definitions/ValueFormat",
"description": "Specifies how the resulting value should be formatted."
}
},
"required": [ "expression", "value" ]
},
"SetExpressionResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'setExpression' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "The new value of the expression."
},
"type": {
"type": "string",
"description": "The optional type of the value.\nThis attribute should only be returned by a debug adapter if the client has passed the value true for the 'supportsVariableType' capability of the 'initialize' request."
},
"presentationHint": {
"$ref": "#/definitions/VariablePresentationHint",
"description": "Properties of a value that can be used to determine how to render the result in the UI."
},
"variablesReference": {
"type": "integer",
"description": "If variablesReference is > 0, the value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"namedVariables": {
"type": "integer",
"description": "The number of named child variables.\nThe client can use this optional information to present the variables in a paged UI and fetch them in chunks.\nThe value should be less than or equal to 2147483647 (2^31-1)."
},
"indexedVariables": {
"type": "integer",
"description": "The number of indexed child variables.\nThe client can use this optional information to present the variables in a paged UI and fetch them in chunks.\nThe value should be less than or equal to 2147483647 (2^31-1)."
}
},
"required": [ "value" ]
}
},
"required": [ "body" ]
}]
},
"StepInTargetsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "This request retrieves the possible stepIn targets for the specified stack frame.\nThese targets can be used in the 'stepIn' request.\nThe StepInTargets may only be called if the 'supportsStepInTargetsRequest' capability exists and is true.\nClients should only call this request if the capability 'supportsStepInTargetsRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "stepInTargets" ]
},
"arguments": {
"$ref": "#/definitions/StepInTargetsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"StepInTargetsArguments": {
"type": "object",
"description": "Arguments for 'stepInTargets' request.",
"properties": {
"frameId": {
"type": "integer",
"description": "The stack frame for which to retrieve the possible stepIn targets."
}
},
"required": [ "frameId" ]
},
"StepInTargetsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'stepInTargets' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"targets": {
"type": "array",
"items": {
"$ref": "#/definitions/StepInTarget"
},
"description": "The possible stepIn targets of the specified source location."
}
},
"required": [ "targets" ]
}
},
"required": [ "body" ]
}]
},
"GotoTargetsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "This request retrieves the possible goto targets for the specified source location.\nThese targets can be used in the 'goto' request.\nClients should only call this request if the capability 'supportsGotoTargetsRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "gotoTargets" ]
},
"arguments": {
"$ref": "#/definitions/GotoTargetsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"GotoTargetsArguments": {
"type": "object",
"description": "Arguments for 'gotoTargets' request.",
"properties": {
"source": {
"$ref": "#/definitions/Source",
"description": "The source location for which the goto targets are determined."
},
"line": {
"type": "integer",
"description": "The line location for which the goto targets are determined."
},
"column": {
"type": "integer",
"description": "An optional column location for which the goto targets are determined."
}
},
"required": [ "source", "line" ]
},
"GotoTargetsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'gotoTargets' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"targets": {
"type": "array",
"items": {
"$ref": "#/definitions/GotoTarget"
},
"description": "The possible goto targets of the specified location."
}
},
"required": [ "targets" ]
}
},
"required": [ "body" ]
}]
},
"CompletionsRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Returns a list of possible completions for a given caret position and text.\nClients should only call this request if the capability 'supportsCompletionsRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "completions" ]
},
"arguments": {
"$ref": "#/definitions/CompletionsArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"CompletionsArguments": {
"type": "object",
"description": "Arguments for 'completions' request.",
"properties": {
"frameId": {
"type": "integer",
"description": "Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope."
},
"text": {
"type": "string",
"description": "One or more source lines. Typically this is the text a user has typed into the debug console before he asked for completion."
},
"column": {
"type": "integer",
"description": "The character position for which to determine the completion proposals."
},
"line": {
"type": "integer",
"description": "An optional line for which to determine the completion proposals. If missing the first line of the text is assumed."
}
},
"required": [ "text", "column" ]
},
"CompletionsResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'completions' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"targets": {
"type": "array",
"items": {
"$ref": "#/definitions/CompletionItem"
},
"description": "The possible completions for ."
}
},
"required": [ "targets" ]
}
},
"required": [ "body" ]
}]
},
"ExceptionInfoRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Retrieves the details of the exception that caused this event to be raised.\nClients should only call this request if the capability 'supportsExceptionInfoRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "exceptionInfo" ]
},
"arguments": {
"$ref": "#/definitions/ExceptionInfoArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"ExceptionInfoArguments": {
"type": "object",
"description": "Arguments for 'exceptionInfo' request.",
"properties": {
"threadId": {
"type": "integer",
"description": "Thread for which exception information should be retrieved."
}
},
"required": [ "threadId" ]
},
"ExceptionInfoResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'exceptionInfo' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"exceptionId": {
"type": "string",
"description": "ID of the exception that was thrown."
},
"description": {
"type": "string",
"description": "Descriptive text for the exception provided by the debug adapter."
},
"breakMode": {
"$ref": "#/definitions/ExceptionBreakMode",
"description": "Mode that caused the exception notification to be raised."
},
"details": {
"$ref": "#/definitions/ExceptionDetails",
"description": "Detailed information about the exception."
}
},
"required": [ "exceptionId", "breakMode" ]
}
},
"required": [ "body" ]
}]
},
"ReadMemoryRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Reads bytes from memory at the provided location.\nClients should only call this request if the capability 'supportsReadMemoryRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "readMemory" ]
},
"arguments": {
"$ref": "#/definitions/ReadMemoryArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"ReadMemoryArguments": {
"type": "object",
"description": "Arguments for 'readMemory' request.",
"properties": {
"memoryReference": {
"type": "string",
"description": "Memory reference to the base location from which data should be read."
},
"offset": {
"type": "integer",
"description": "Optional offset (in bytes) to be applied to the reference location before reading data. Can be negative."
},
"count": {
"type": "integer",
"description": "Number of bytes to read at the specified location and offset."
}
},
"required": [ "memoryReference", "count" ]
},
"ReadMemoryResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'readMemory' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "The address of the first byte of data returned.\nTreated as a hex value if prefixed with '0x', or as a decimal value otherwise."
},
"unreadableBytes": {
"type": "integer",
"description": "The number of unreadable bytes encountered after the last successfully read byte.\nThis can be used to determine the number of bytes that must be skipped before a subsequent 'readMemory' request will succeed."
},
"data": {
"type": "string",
"description": "The bytes read from memory, encoded using base64."
}
},
"required": [ "address" ]
}
}
}]
},
"DisassembleRequest": {
"allOf": [ { "$ref": "#/definitions/Request" }, {
"type": "object",
"description": "Disassembles code stored at the provided location.\nClients should only call this request if the capability 'supportsDisassembleRequest' is true.",
"properties": {
"command": {
"type": "string",
"enum": [ "disassemble" ]
},
"arguments": {
"$ref": "#/definitions/DisassembleArguments"
}
},
"required": [ "command", "arguments" ]
}]
},
"DisassembleArguments": {
"type": "object",
"description": "Arguments for 'disassemble' request.",
"properties": {
"memoryReference": {
"type": "string",
"description": "Memory reference to the base location containing the instructions to disassemble."
},
"offset": {
"type": "integer",
"description": "Optional offset (in bytes) to be applied to the reference location before disassembling. Can be negative."
},
"instructionOffset": {
"type": "integer",
"description": "Optional offset (in instructions) to be applied after the byte offset (if any) before disassembling. Can be negative."
},
"instructionCount": {
"type": "integer",
"description": "Number of instructions to disassemble starting at the specified location and offset.\nAn adapter must return exactly this number of instructions - any unavailable instructions should be replaced with an implementation-defined 'invalid instruction' value."
},
"resolveSymbols": {
"type": "boolean",
"description": "If true, the adapter should attempt to resolve memory addresses and other values to symbolic names."
}
},
"required": [ "memoryReference", "instructionCount" ]
},
"DisassembleResponse": {
"allOf": [ { "$ref": "#/definitions/Response" }, {
"type": "object",
"description": "Response to 'disassemble' request.",
"properties": {
"body": {
"type": "object",
"properties": {
"instructions": {
"type": "array",
"items": {
"$ref": "#/definitions/DisassembledInstruction"
},
"description": "The list of disassembled instructions."
}
},
"required": [ "instructions" ]
}
}
}]
},
"Capabilities": {
"type": "object",
"title": "Types",
"description": "Information about the capabilities of a debug adapter.",
"properties": {
"supportsConfigurationDoneRequest": {
"type": "boolean",
"description": "The debug adapter supports the 'configurationDone' request."
},
"supportsFunctionBreakpoints": {
"type": "boolean",
"description": "The debug adapter supports function breakpoints."
},
"supportsConditionalBreakpoints": {
"type": "boolean",
"description": "The debug adapter supports conditional breakpoints."
},
"supportsHitConditionalBreakpoints": {
"type": "boolean",
"description": "The debug adapter supports breakpoints that break execution after a specified number of hits."
},
"supportsEvaluateForHovers": {
"type": "boolean",
"description": "The debug adapter supports a (side effect free) evaluate request for data hovers."
},
"exceptionBreakpointFilters"