knowledge-base-models 0.2.0

Data models for the file-based knowledge base
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod allocation;
mod common;
mod entity;
mod identifiers;
mod property;
mod reference;

pub use allocation::{IdAllocation, NextIds};
pub(crate) use common::deserialize_optional_non_null;
pub use common::{LocalizedMap, LocalizedText};
pub use entity::{Classification, Entity, Image, Qualifier, Statement, Value};
pub use identifiers::{EntityId, EntityTypeId, IdentifierParseError, PropertyId, ReferenceId, StatementId};
pub use property::{Cardinality, EntityType, Property, PropertyUsage, ValueType};
pub use reference::Reference;