axgf-rs 0.1.0

Reference implementation of the Axiom Genealogy Format (AXGF) 1.0 — a stateless JSON-boundary library for creating, validating, importing, exporting, and converting genealogy bundles (GEDCOM 5.5.1 supported).
Documentation
// SPDX-License-Identifier: Apache-2.0
//! # model — typed representations of AXGF entities
//!
//! Strongly-typed Rust structs mirroring the eight entity kinds defined in
//! the specification (`Person`, `Family`, `Event`, `Link`, `Occupation`,
//! `Source`, `Place`, `Document`) plus the top-level `Manifest`. Each kind
//! lives in its own sub-module.
//!
//! **Internal to the library.** These types never cross the public
//! boundary; the boundary is JSON only. Rich typing lives here so
//! [`crate::logic`] can operate safely, but callers see only flat JSON.
//!
//! Every struct uses `#[serde(flatten)] pub extra: BTreeMap<String, Value>`
//! (or an equivalent) to preserve unknown fields untouched across a
//! round-trip, per AXGF principle **P9** (extensible without breaking).
//!
//! Filled in during Phase 2.

pub mod common;
pub mod document;
pub mod event;
pub mod family;
pub mod link;
pub mod manifest;
pub mod occupation;
pub mod person;
pub mod place;
pub mod source;