create_doc
Generate and organize documents or reports within a specified folder, supporting markdown content, editor assignments, and subscriber notifications for efficient task management and collaboration.
Instructions
Create a new document or report
Input Schema
Name | Required | Description | Default |
---|---|---|---|
editor_duids | No | List of editor DUIDs | |
folder_duid | Yes | Folder DUID to create the document in | |
report_kind | No | Kind of report (if creating a report) | |
subscriber_duids | No | List of subscriber DUIDs | |
text | No | Content of the document | |
text_markdown | No | Markdown content of the document | |
title | Yes | Title of the document |
Input Schema (JSON Schema)
{
"properties": {
"editor_duids": {
"description": "List of editor DUIDs",
"items": {
"type": "string"
},
"type": "array"
},
"folder_duid": {
"description": "Folder DUID to create the document in",
"type": "string"
},
"report_kind": {
"description": "Kind of report (if creating a report)",
"enum": [
"Changelog",
"Standup"
],
"type": "string"
},
"subscriber_duids": {
"description": "List of subscriber DUIDs",
"items": {
"type": "string"
},
"type": "array"
},
"text": {
"description": "Content of the document",
"type": "string"
},
"text_markdown": {
"description": "Markdown content of the document",
"type": "string"
},
"title": {
"description": "Title of the document",
"type": "string"
}
},
"required": [
"folder_duid",
"title"
],
"type": "object"
}