* @brief Input schema for assistant.workspace.plan. */
| 209 | * @brief Input schema for assistant.workspace.plan. |
| 210 | */ |
| 211 | static QJsonObject planInputSchema() |
| 212 | { |
| 213 | QJsonObject props; |
| 214 | props[QStringLiteral("workspaceId")] = |
| 215 | makeProperty(QStringLiteral("integer"), QStringLiteral("Optional workspace id to plan for.")); |
| 216 | props[QStringLiteral("workspace")] = |
| 217 | makeProperty(QStringLiteral("string"), QStringLiteral("Optional workspace title to plan for.")); |
| 218 | return makeObjectSchema(props); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * @brief Shared property bag for assistant.script.dryRun and assistant.script.apply. |
no test coverage detected