fr_create_project
Create projects in Freshrelease project management platform by specifying a name and optional description to organize and track work items.
Instructions
Create a project in Freshrelease.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "fr_create_projectArguments",
"type": "object"
}