chore: tended the spec against the bDS app to fix contradictions

This commit is contained in:
2026-04-05 08:06:04 +02:00
parent ee61ad56ea
commit f72d87eafe
9 changed files with 213 additions and 124 deletions

View File

@@ -35,7 +35,7 @@ entity Media {
file_path: String
sidecar_path: String
checksum: String?
tags: Set<String>
tags: List<String>
created_at: Timestamp
updated_at: Timestamp
@@ -85,7 +85,7 @@ rule ImportMedia {
width: detect_width(source_file),
height: detect_height(source_file),
file_path: dest,
tags: {}
tags: []
)
ensures: FileCopied(source_file, dest)
ensures: SidecarWritten(media)