Semantic Architecture & Knowledge Graph

Explore how Aevum structures, contextualizes, and interconnects human knowledge using formal ontologies, RDF standards, and machine-readable semantics.

Overview: Structuring Meaning

Unlike traditional encyclopedias that store flat articles, Aevum Encyclopedia treats knowledge as a dynamic semantic network. Every concept, entity, event, and relationship is modeled using standardized ontologies, enabling machines to reason over data and humans to discover non-obvious connections across disciplines.

Our semantic layer operates on four foundational principles:

Principle 01

🔗 Interlinkability

Entities are universally identifiable via persistent URIs and cross-referenced across linguistic and disciplinary boundaries.

Principle 02

🧩 Formal Ontology

Class hierarchies, properties, and constraints are defined using OWL 2 RL/RPF, ensuring logical consistency and machine reasonability.

Principle 03

📊 Multi-Layer Context

Semantics are stratified into lexical, conceptual, relational, and evidentiary layers, each serving distinct query and inference patterns.

Principle 04

🤖 AI-Ready Semantics

Dense vector embeddings are aligned with graph topology, enabling hybrid retrieval (keyword + graph + embedding) for high-fidelity answers.

Data Model & Entity Types

The Aevum Knowledge Graph (AEKG) follows a property graph + RDF hybrid model. Core entity types are mapped to Schema.org, Wikidata, and domain-specific ontologies where applicable.

Entity Class Primary Properties Example URI Pattern
ae:Concept label, description, category, aliases https://aevum.io/entity/concept/quantum_entanglement
ae:Person birthDate, affiliations, works, influences https://aevum.io/entity/person/albert_einstein
ae:Event startTime, endTime, location, participants https://aevum.io/entity/event/solway_conference
ae:Place geoCoordinates, hierarchy, historicalNames https://aevum.io/entity/place/princeton_nj
ae:Publication doi, journal, authors, citationCount https://aevum.io/entity/pub/doi-10.1103/physrev.47.777

Visualizing Semantic Relationships

Below is a simplified representation of how entities connect through typed, directional edges with provenance metadata.

ae:Person
Marie Curie
ae:authored
ae:Publication
Radioactivity Theory
ae:explains
ae:Concept
Nuclear Decay

* Edges carry confidence scores, temporal validity, and source citations

Technical Standards & Interoperability

Aevum publishes semantic data in open, W3C-compliant formats. All exports support standard RDF serializations and knowledge graph APIs.

// JSON-LD Representation of a Semantic Triple
{
  "@context": "https://aevum.io/context/ae-1.0",
  "@type": "ae:Concept",
  "@id": "https://aevum.io/entity/concept/machine_learning",
  "rdfs:label": [
    { "@value": "Machine Learning", "@language": "en" },
    { "@value": "Aprendizaje Automático", "@language": "es" }
  ],
  "ae:memberOf": "https://aevum.io/entity/category/computer_science",
  "ae:relatedTo": [
    "https://aevum.io/entity/concept/neural_networks",
    "https://aevum.io/entity/concept/statistical_inference"
  ],
  "ae:confidenceScore": 0.98,
  "ae:verifiedBy": "https://aevum.io/authority/domain_experts"
}

Querying the Knowledge Graph

Developers and researchers can execute SPARQL queries against our public endpoint or use the REST/GraphQL API for programmatic access.

# Find all Nobel laureates who published work on quantum mechanics
PREFIX ae: <https://aevum.io/ontology/> 
PREFIX schema: <https://schema.org/> 
SELECT ?person ?award ?paper
WHERE {
  ?person schema:award ?award .
  ?award ae:category "Nobel Prize" .
  ?person ae:authored ?paper .
  ?paper ae:topic "Quantum Mechanics" .
  FILTER(?paper/ae:confidenceScore > 0.85)
}

Contributing Semantic Data

Maintaining a high-quality knowledge graph requires structured contributions. Whether you're adding new entities, refining relationships, or improving cross-lingual mappings, follow these guidelines:

Ready to shape the semantic layer?

Access contributor tools, download ontology dumps, or request API credentials for research partnerships.

}