| Crates.io | schema-registry-core |
| lib.rs | schema-registry-core |
| version | 0.1.0 |
| created_at | 2025-11-23 04:57:50.97315+00 |
| updated_at | 2025-11-23 04:57:50.97315+00 |
| description | Core types and traits for the LLM Schema Registry platform |
| homepage | https://github.com/globalbusinessadvisors/llm-schema-registry |
| repository | https://github.com/globalbusinessadvisors/llm-schema-registry |
| max_upload_size | |
| id | 1946114 |
| size | 93,760 |
Core types and traits for the LLM Schema Registry platform.
use schema-registry-core::{Schema, SchemaFormat, CompatibilityMode};
// Create a new schema
let schema = Schema::new(
"com.example.User",
"1.0.0",
SchemaFormat::Json,
r#"{"type": "object"}"#,
);
Apache-2.0