* @brief Input schema for assistant.workspace.resolve. */
| 148 | * @brief Input schema for assistant.workspace.resolve. |
| 149 | */ |
| 150 | static QJsonObject workspaceInputSchema() |
| 151 | { |
| 152 | QJsonObject props; |
| 153 | props[QStringLiteral("workspaceId")] = |
| 154 | makeProperty(QStringLiteral("integer"), QStringLiteral("Workspace id from workspace list.")); |
| 155 | props[QStringLiteral("title")] = |
| 156 | makeProperty(QStringLiteral("string"), QStringLiteral("Exact or case-insensitive title.")); |
| 157 | return makeObjectSchema(props); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * @brief Input schema for assistant.workspace.addTile. |
no test coverage detected