Skip to main content

BlueprintValidationEvent

messagestringrequired

The message of the diagnostic event.

Example: Incorrect blueprint version
levelintegerrequired

The level of the diagnostic.

Example: 1
timestampintegerrequired

The unix timestamp of the event in seconds.

Example: 1678901234
range object
start object

The start position of the range.

lineinteger

The line number of the source position.

Example: 1
columninteger

The column number of the source position.

Example: 1
end object

The end position of the range.

lineinteger

The line number of the source position.

Example: 1
columninteger

The column number of the source position.

Example: 1
columnAccuracyinteger

The column accuracy of the range in the host document.

Possible values: [1, 2]

Example: 1
BlueprintValidationEvent
{
"message": "Incorrect blueprint version",
"level": 1,
"timestamp": 1678901234,
"range": {
"start": {
"line": 1,
"column": 1
},
"end": {
"line": 1,
"column": 1
},
"columnAccuracy": 1
}
}