1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! Record types of the open Antares (`.ant`) interchange format.
//!
//! Everything that can appear in a `.ant` file lives here, one module
//! per record plane:
//!
//! - [`graph`] — [`Vertex`] and [`Edge`], with typed properties and
//! optional bitemporal validity.
//! - [`observation`] — append-only, source-bound atomic facts.
//! - [`evidence`] — the source material observations and edges cite.
//! - [`belief`] — versioned inferred state derived from observations.
//! - [`schema`] — OpenSPG-compatible type declarations.
//! - [`author`] — the provenance stamp records can carry.
//!
//! Property values are typed at SQL fidelity ([`PropertyValue`]).
//! Legacy scalars stay bare JSON on the wire; the typed additions
//! (decimal, date, time, timestamp, uuid, bytes, sized ints, arrays)
//! travel in a tagged `{"$ant": ..., "v": ...}` envelope, so a plain
//! JSON document with a `$ant` field still round-trips as a document.
//! [`Decimal`] is exact — an i128 of unscaled digits plus a scale,
//! never `f64` — so `DECIMAL`/`NUMERIC` columns survive digit for
//! digit.
//!
//! The container that carries these records (compression, manifest,
//! trailer, hashing) is the `antares-format` crate; this crate is just
//! the record vocabulary.
pub use ;
pub use ;
pub use Decimal;
pub use CoreError;
pub use ;
pub use ;
pub use ;
pub use ;
pub use *;