Skip to main content

knowledge_base_models/
lib.rs

1mod allocation;
2mod common;
3mod entity;
4mod identifiers;
5mod property;
6mod reference;
7
8pub use allocation::{IdAllocation, NextIds};
9pub(crate) use common::deserialize_optional_non_null;
10pub use common::{LocalizedMap, LocalizedText};
11pub use entity::{Classification, Entity, Image, Qualifier, Statement, Value};
12pub use identifiers::{EntityId, EntityTypeId, IdentifierParseError, PropertyId, ReferenceId, StatementId};
13pub use property::{Cardinality, EntityType, Property, PropertyUsage, ValueType};
14pub use reference::Reference;