{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/BackgroundRunResult",
  "definitions": {
    "BackgroundRunResult": {
      "type": "object",
      "properties": {
        "sessionId": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "command": {
          "type": "string"
        }
      },
      "required": ["status", "command"],
      "additionalProperties": false
    }
  }
}
