delete_project
Permanently remove a project and its associated data using a project ID and deletion confirmation, ensuring precise management of AI-powered theatrical lighting design projects.
Instructions
Delete a project and all its data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirmDelete | Yes | Confirm deletion of project and all its data | |
projectId | Yes | Project ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"confirmDelete": {
"default": false,
"description": "Confirm deletion of project and all its data",
"type": "boolean"
},
"projectId": {
"description": "Project ID to delete",
"type": "string"
}
},
"required": [
"projectId",
"confirmDelete"
],
"type": "object"
}