import Foundation struct Publication: Identifiable { let venue: String let title: String var id: String { title + venue } }