changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": {},
+ "properties": {
+ "outcome": {
+ "additionalProperties": false,
+ "properties": {
+ "body": {},
+ "event": {
+ "enum": [
+ "stopped",
+ "exited",
+ "terminated"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "event"
+ ],
+ "type": "object"
+ },
+ "request": {
+ "enum": [
+ "launch",
+ "attach"
+ ],
+ "type": "string"
+ },
+ "requestResult": {},
+ "snapshot": {
+ "additionalProperties": {},
+ "properties": {
+ "collectionErrors": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "message": {
+ "type": "string"
+ },
+ "operation": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "operation",
+ "message"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "disassembly": {
+ "items": {},
+ "type": "array"
+ },
+ "exception": {},
+ "frame": {
+ "additionalProperties": {},
+ "properties": {
+ "column": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "id": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "line": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "source": {}
+ },
+ "required": [
+ "id",
+ "name",
+ "line",
+ "column"
+ ],
+ "type": "object"
+ },
+ "locals": {
+ "items": {},
+ "type": "array"
+ },
+ "modules": {
+ "items": {},
+ "type": "array"
+ },
+ "postmortem": {
+ "type": "boolean"
+ },
+ "registers": {
+ "items": {},
+ "type": "array"
+ },
+ "scopes": {
+ "items": {},
+ "type": "array"
+ },
+ "stack": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "column": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "id": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "line": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "source": {}
+ },
+ "required": [
+ "id",
+ "name",
+ "line",
+ "column"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "stopped": {},
+ "symbolHealth": {
+ "additionalProperties": false,
+ "properties": {
+ "limitations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "modules": {
+ "additionalProperties": false,
+ "properties": {
+ "collected": {
+ "type": "boolean"
+ },
+ "symbolsAvailable": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "symbolsMissing": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "symbolsUnknown": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "totalModules": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "withExplicitStatus": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "collected",
+ "totalModules",
+ "withExplicitStatus",
+ "symbolsAvailable",
+ "symbolsMissing",
+ "symbolsUnknown"
+ ],
+ "type": "object"
+ },
+ "stack": {
+ "additionalProperties": false,
+ "properties": {
+ "namedFrames": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "sourceMappedFrames": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "topFrameNamed": {
+ "type": "boolean"
+ },
+ "topFrameSourceMapped": {
+ "type": "boolean"
+ },
+ "totalFrames": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "totalFrames",
+ "namedFrames",
+ "sourceMappedFrames",
+ "topFrameNamed",
+ "topFrameSourceMapped"
+ ],
+ "type": "object"
+ },
+ "status": {
+ "enum": [
+ "good",
+ "partial",
+ "poor",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "summary",
+ "stack",
+ "modules",
+ "limitations"
+ ],
+ "type": "object"
+ },
+ "thread": {
+ "additionalProperties": {},
+ "properties": {
+ "id": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "thread",
+ "stack",
+ "frame",
+ "scopes",
+ "locals",
+ "registers",
+ "symbolHealth"
+ ],
+ "type": "object"
+ },
+ "status": {}
+ },
+ "required": [
+ "request",
+ "requestResult",
+ "outcome",
+ "status"
+ ],
+ "type": "object"
+}