summaryrefslogtreecommitdiffstats
path: root/schema/remote/inbound/set.json
blob: da29b4e3720da6b9db2e3e0c819b73584e17611b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
    "title": "Set schema",
    "description": "The client would like to change a setting on an existing process",
    "properties": {
        "command": { "type": "string", "pattern": "set", "required": true },
        "id": { "type": "integer", "required": true },

        "key": {
            "type": "string",
            "enum": ["priority", "oomAdjustment"],
            "required": true
        },

        "value": {
            "type": "integer",
            "required": true
        }
  }
}