Blog
data class Blog(val title: String, val author: String, val content: String, val timestamp: Instant = Instant.now(), val keywords: Set<String> = emptySet(), val format: String = "markdown") : ContentAsset
Blog content, specifying its format in a way that will be intelligible to an LLM as well as application code.