datafold 0.1.55

A personal database for data sovereignty with AI-powered ingestion
Documentation
use serde::{Deserialize, Serialize};
use utoipa::ToSchema;

#[cfg(feature = "ts-bindings")]
use ts_rs::TS;

/// Represents the schema-level type information.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, ToSchema)]
#[cfg_attr(feature = "ts-bindings", derive(TS))]
#[cfg_attr(
    feature = "ts-bindings",
    ts(
        export,
        export_to = "bindings/src/datafold_node/static-react/src/types/generated.ts"
    )
)]
pub enum DeclarativeSchemaType {
    /// Single schema without range semantics
    Single,
    /// Schema that stores data in a key range
    Range,
    /// Schema that uses hashed and ranged keys for partitioning
    HashRange,
}

pub fn default_schema_type() -> DeclarativeSchemaType {
    DeclarativeSchemaType::Single
}

// Schema is now DeclarativeSchemaDefinition - the unified declarative schema type
pub use crate::schema::types::declarative_schemas::DeclarativeSchemaDefinition as Schema;