create_project_v2
Create a new GitHub project V2 by specifying an owner ID, title, and optional description using the GraphQL API. Streamline GitHub project management and organization.
Instructions
Create a new GitHub project V2 using GraphQL API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Description of the project | |
ownerId | Yes | The node ID of the organization or user | |
title | Yes | Title of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Description of the project",
"type": "string"
},
"ownerId": {
"description": "The node ID of the organization or user",
"type": "string"
},
"title": {
"description": "Title of the project",
"type": "string"
}
},
"required": [
"ownerId",
"title"
],
"type": "object"
}