🔗 Interlinkability
Entities are universally identifiable via persistent URIs and cross-referenced across linguistic and disciplinary boundaries.
Explore how Aevum structures, contextualizes, and interconnects human knowledge using formal ontologies, RDF standards, and machine-readable semantics.
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:
Entities are universally identifiable via persistent URIs and cross-referenced across linguistic and disciplinary boundaries.
Class hierarchies, properties, and constraints are defined using OWL 2 RL/RPF, ensuring logical consistency and machine reasonability.
Semantics are stratified into lexical, conceptual, relational, and evidentiary layers, each serving distinct query and inference patterns.
Dense vector embeddings are aligned with graph topology, enabling hybrid retrieval (keyword + graph + embedding) for high-fidelity answers.
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 |
Below is a simplified representation of how entities connect through typed, directional edges with provenance metadata.
* Edges carry confidence scores, temporal validity, and source citations
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" }
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) }
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:
ae:reification for uncertain or contested claimsae:sourcedByaevum-validate CLI tool before submissionAccess contributor tools, download ontology dumps, or request API credentials for research partnerships.