freshworks · Schema
NoteCreate
Properties
| Name | Type | Description |
|---|---|---|
| body | string | HTML content of the note. |
| private | boolean | Whether the note is private (internal only). |
| incoming | boolean | Whether the note is incoming. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NoteCreate",
"title": "NoteCreate",
"type": "object",
"required": [
"body"
],
"properties": {
"body": {
"type": "string",
"description": "HTML content of the note."
},
"private": {
"type": "boolean",
"description": "Whether the note is private (internal only).",
"default": true
},
"incoming": {
"type": "boolean",
"description": "Whether the note is incoming.",
"default": false
}
}
}