Google Docs
GOOGLEDOCS_CREATE_PARAGRAPH_BULLETS
Tool to add bullets to paragraphs within a specified range in a Google Document. Use when you need to format a list or a set of paragraphs as bullet points.
Remote googledocs
Other tools also called GOOGLEDOCS_CREATE_PARAGRAPH_BULLETS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"12345abcdef"
],
"description": "The ID of the document to update."
},
"createParagraphBullets": {
"type": "object",
"title": "Create Paragraph Bullets",
"required": [
"range",
"bulletPreset"
],
"properties": {
"range": {
"type": "object",
"title": "Range",
"required": [
"startIndex",
"endIndex"
],
"properties": {
"endIndex": {
"type": "integer",
"title": "End Index",
"examples": [
200
],
"description": "The zero-based end index of the range, exclusive."
},
"segmentId": {
"type": "string",
"title": "Segment Id",
"default": null,
"examples": [
"header_id"
],
"nullable": true,
"description": "The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body."
},
"startIndex": {
"type": "integer",
"title": "Start Index",
"examples": [
100
],
"description": "The zero-based start index of the range, inclusive."
}
},
"description": "The range to apply the bullet preset to.",
"additionalProperties": false
},
"bulletPreset": {
"enum": [
"BULLET_GLYPH_PRESET_UNSPECIFIED",
"BULLET_DISC_CIRCLE_SQUARE",
"BULLET_DIAMONDX_ARROW3D_SQUARE",
"BULLET_CHECKBOX",
"BULLET_ARROW_DIAMOND_DISC",
"BULLET_STAR_CIRCLE_SQUARE",
"BULLET_ARROW3D_CIRCLE_SQUARE",
"BULLET_LEFTTRIANGLE_DIAMOND_DISC",
"BULLET_DIAMONDX_HOLLOWDIAMOND_SQUARE",
"BULLET_DIAMOND_CIRCLE_SQUARE",
"NUMBERED_DECIMAL_ALPHA_ROMAN",
"NUMBERED_DECIMAL_ALPHA_ROMAN_PARENS",
"NUMBERED_DECIMAL_NESTED",
"NUMBERED_UPPERALPHA_ALPHA_ROMAN",
"NUMBERED_UPPERROMAN_UPPERALPHA_DECIMAL",
"NUMBERED_ZERODECIMAL_ALPHA_ROMAN"
],
"type": "string",
"title": "Bullet Preset",
"examples": [
"BULLET_DISC_CIRCLE_SQUARE"
],
"description": "The kinds of bullet glyphs to be used."
}
},
"additionalProperties": false
}
}
}