use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TopicMetadata {
pub topic_id: String,
pub topic_name: String,
pub keyed_by: Option<String>,
pub schema_json: serde_json::Value,
pub created_at: DateTime<Utc>,
}