Namespaces Info#
This file provides namespace prefix mappings for normalizing IRIs to human-readable prefix:LocalName format across all extraction outputs.
On this page:
Structure#
| Field | Description |
|---|---|
ontology |
The ontology's logical prefix and namespace, inferred from VANN annotations or owl:Ontology declarations |
prefixes |
All namespace prefixes declared in the ontology graph, normalized for JSON serialization |
no_prefixes |
Namespaces used in the ontology but lacking declared prefixes (remain as full IRIs) |
Key Details
_empty_prefixrepresents the default namespace declared as@prefix :in the ontology_missingis a synthetic fallback prefix for IRIs with no matching namespace_missingnever appears in this file but may appear inclass_info.jsonandrelation_info.jsonas_missing:LocalName- All identifiers are normalized to
prefix:LocalNameformat for human readability
Example#
{
"ontology": {
"prefix": "sc",
"namespace": "http://pygraf.t/"
},
"prefixes": {
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"owl": "http://www.w3.org/2002/07/owl#",
"sc": "http://pygraf.t/",
"_empty_prefix": "http://pygraf.t/"
},
"no_prefixes": [
"http://external.example.org/vocab/",
"http://another.external/schema#"
]
}