backup-database
Creates backups of Firebird databases, allowing users to specify backup paths, formats (full or incremental), compression, metadata-only options, and verbose progress details for secure data preservation.
Instructions
Creates a backup of the Firebird database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backupPath | Yes | Path where the backup file will be saved | |
options | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"backupPath": {
"description": "Path where the backup file will be saved",
"minLength": 1,
"type": "string"
},
"options": {
"additionalProperties": false,
"properties": {
"compress": {
"default": false,
"description": "Whether to compress the backup",
"type": "boolean"
},
"format": {
"default": "gbak",
"description": "Backup format: gbak (full backup) or nbackup (incremental)",
"enum": [
"gbak",
"nbackup"
],
"type": "string"
},
"metadata_only": {
"default": false,
"description": "Whether to backup only metadata (no data)",
"type": "boolean"
},
"verbose": {
"default": false,
"description": "Whether to show detailed progress",
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"backupPath"
],
"type": "object"
}