brk_types 0.3.0-beta.1

Structs used throughout BRK
Documentation
use std::borrow::Cow;

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

use crate::SyncStatus;

/// Server health status
#[derive(Debug, Serialize, Deserialize, JsonSchema)]
pub struct Health {
    /// Health status ("healthy")
    pub status: Cow<'static, str>,
    /// Service name
    pub service: Cow<'static, str>,
    /// Server version
    pub version: Cow<'static, str>,
    /// Current server time (ISO 8601)
    pub timestamp: String,
    /// Server start time (ISO 8601)
    pub started_at: String,
    /// Uptime in seconds
    pub uptime_seconds: u64,
    /// Sync status
    #[serde(flatten)]
    pub sync: SyncStatus,
}