useankurah::Model;useserde::{Deserialize, Serialize};/// Policy configuration entity stored in ankurah.
/// The collection name is auto-derived as "jwtpolicy" (struct name lowercased).
#[derive(Model, Debug, Serialize, Deserialize)]pubstructJwtPolicy{/// Serialized PolicyConfig JSON
#[active_type(LWW)]pubconfig_json: String,
/// PEM-encoded public key for JWT verification
#[active_type(LWW)]pubpublic_key_pem: String,
}