{
  "$schema": "http://json-schema.org/schema",
  "version": 2,
  "title": "Dev Infra executor",
  "description": "",
  "type": "object",
  "properties": {
    "subCommand": {
      "type": "string",
      "enum": ["up", "down", "logs", "start", "stop", "open"],
      "description": "Sub command to run"
    },
    "args": {
      "type": "string",
      "description": "Sub command args"
    }
  },
  "required": ["subCommand"]
}
