{
	"name": "FireIde.API.Run.Current",
	"Web.Endpoint": "GET /run/current",
	"json": {
		"@set(spawned)": {
			"@FireIde.Core.ChildProcess.Spawned.Last": null
		},
		"@if(spawned)": {
			"running": {
				"@get(spawned.running)": null
			},
			"stdout": {
				"@get(spawned.stdoutPath)": null
			},
			"stderr": {
				"@get(spawned.stderrPath)": null
			},
			"pid": {
				"@get(spawned.child.pid)": null
			}
		},
		"@unless(spawned)": {
			"running": false,
			"stdout": "",
			"stderr": ""
		}
	}
}