* @brief Input schema for assistant.restore. */
| 341 | * @brief Input schema for assistant.restore. |
| 342 | */ |
| 343 | static QJsonObject restoreInputSchema() |
| 344 | { |
| 345 | QJsonObject props; |
| 346 | props[QStringLiteral("path")] = |
| 347 | makeProperty(QStringLiteral("string"), |
| 348 | QStringLiteral("Absolute snapshot path from assistant.checkpoint or from a " |
| 349 | "destructive command's backupPath.")); |
| 350 | props[QStringLiteral("timestamp")] = makeProperty( |
| 351 | QStringLiteral("string"), QStringLiteral("Snapshot timestamp from assistant.listCheckpoints.")); |
| 352 | props[QStringLiteral("label")] = |
| 353 | makeProperty(QStringLiteral("string"), QStringLiteral("Label assigned at checkpoint time.")); |
| 354 | return makeObjectSchema(props); |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * @brief Input schema for assistant.listCheckpoints. |
no test coverage detected