' Entity/Relationsip Diagram for secrets database
@startuml
' Avoid problems with angled crows feet
skinparam linetype ortho
entity "**Collections**" as coll {
* **name** : text
--
**created_on** : datetime
}
entity "**Items**" as item {
* **label** : text <<generated>>
--
**parameters** : blob
--
**value** : blob <<encrypted>>
--
**content_type** : text
--
**prompt_to_unlock** : bool
--
**created_on** : datetime
}
entity "**Attributes**" as attr {
* **id** : num <<generated>>
--
**name** : text
--
**value** : text
}
coll ||--o{ item
item ||--o{ attr
@enduml