{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "cmd": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4096
    },
    "cwd": {
      "type": "string",
      "maxLength": 512
    },
    "timeoutMs": {
      "type": "integer",
      "minimum": 1000,
      "maximum": 600000
    }
  },
  "required": [
    "cmd"
  ],
  "additionalProperties": false
}