add_project
Add a new project with details including name, description, start date, investment amount, and current progress to the project management system.
Instructions
新增项目
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| project | Yes | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "project": {
      "additionalProperties": false,
      "properties": {
        "description": {
          "description": "项目描述",
          "type": "string"
        },
        "investment": {
          "description": "投资金额",
          "type": "number"
        },
        "name": {
          "description": "项目名称",
          "type": "string"
        },
        "progress": {
          "description": "当前进度",
          "type": "number"
        },
        "startDate": {
          "description": "开始日期",
          "type": "string"
        }
      },
      "required": [
        "name",
        "description",
        "startDate",
        "investment",
        "progress"
      ],
      "type": "object"
    }
  },
  "required": [
    "project"
  ],
  "type": "object"
}