MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / CatalogSchema

Class CatalogSchema

graphlite/src/catalog/traits.rs:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16/// Schema information for a catalog
17#[derive(Debug, Clone, Serialize, Deserialize)]
18pub struct CatalogSchema {
19 /// Name of the catalog type
20 pub name: String,
21 /// Version of the catalog implementation
22 pub version: String,
23 /// List of entity types this catalog can manage
24 pub entities: Vec<String>,
25 /// List of supported operations
26 pub operations: Vec<String>,
27}
28
29/// Core trait that all catalog providers must implement
30///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected