ai-lib-core 0.9.6

AI-Protocol execution runtime core (protocol, client, pipeline, transport)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Protocol schema definitions and type mappings

use serde::{Deserialize, Serialize};

/// Protocol schema structure (for future schema validation)
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ProtocolSchema {
    pub version: String,
    pub definitions: SchemaDefinitions,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SchemaDefinitions {
    // Schema definitions would go here
    // This is a placeholder for future schema validation enhancements
}