44 lines
800 B
JSON
44 lines
800 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
|
"additionalProperties": false,
|
||
|
|
"definitions": {
|
||
|
|
"StopDecisionWire": {
|
||
|
|
"enum": [
|
||
|
|
"block"
|
||
|
|
],
|
||
|
|
"type": "string"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"properties": {
|
||
|
|
"continue": {
|
||
|
|
"default": true,
|
||
|
|
"type": "boolean"
|
||
|
|
},
|
||
|
|
"decision": {
|
||
|
|
"allOf": [
|
||
|
|
{
|
||
|
|
"$ref": "#/definitions/StopDecisionWire"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"default": null
|
||
|
|
},
|
||
|
|
"reason": {
|
||
|
|
"default": null,
|
||
|
|
"type": "string"
|
||
|
|
},
|
||
|
|
"stopReason": {
|
||
|
|
"default": null,
|
||
|
|
"type": "string"
|
||
|
|
},
|
||
|
|
"suppressOutput": {
|
||
|
|
"default": false,
|
||
|
|
"type": "boolean"
|
||
|
|
},
|
||
|
|
"systemMessage": {
|
||
|
|
"default": null,
|
||
|
|
"type": "string"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"title": "stop.command.output",
|
||
|
|
"type": "object"
|
||
|
|
}
|