Update docs for entries schema

This commit is contained in:
thePR0M3TH3AN
2025-07-02 23:22:03 -04:00
parent 26b7b5951f
commit a6cffd2007
2 changed files with 45 additions and 9 deletions

View File

@@ -118,6 +118,24 @@ seedpass export --file "~/seedpass_backup.json"
seedpass import --file "~/seedpass_backup.json"
```
### Vault JSON Layout
The encrypted index file `seedpass_entries_db.json.enc` begins with `schema_version` `2` and stores an `entries` map keyed by entry numbers.
```json
{
"schema_version": 2,
"entries": {
"0": {
"website": "example.com",
"length": 8,
"type": "password",
"notes": ""
}
}
}
```
## Usage