A "Process" Target MUST contain at least one property

interface Process {
    command_line?: string;
    cwd?: string;
    executable?: File;
    name?: string;
    parent?: Process;
    pid?: number;
}

Properties

command_line?: string

The full command line invocation used to start this process, including all arguments

cwd?: string

Current working directory of the process

executable?: File

Executable that was executed to start the process

name?: string

Name of the process

parent?: Process

Process that spawned this one

pid?: number

Process ID of the process