{
  "$schema": "http://json-schema.org/schema",
  "id": "RunCommandOptions",
  "description": "Runs Architect targets.",
  "$longDescription": "",

  "$aliases": [],
  "$scope": "in",
  "$type": "architect",
  "$impl": "./run-impl#RunCommand",

  "type": "object",
  "properties": {
    "target": {
      "type": "string",
      "description": "The target to run.",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "configuration": {
      "description": "Specify the configuration to use.",
      "type": "string",
      "aliases": ["c"]
    }
  },
  "required": [
  ]
}