ontologyMap – Import Center
Paste a JSON payload that defines concepts and triples, then run an import. Use this page to iterate on bulk updates or to share precise instructions with an LLM assistant.
Run an Import
The payload must include a concepts array and can optionally include a triples array. Only new or changed entries are persisted.
Sample JSON
Share or adapt this snippet when prompting an LLM—for example, “Create 5 new nutrition concepts using this schema”.
{
"concepts": [
{
"id": "c_strength_training",
"label": "Strength Training",
"aliases": ["Resistance Training"],
"urls": ["https://en.wikipedia.org/wiki/Strength_training"],
"note": "Foundational overview of strength methodologies.",
"tags": ["fitness", "training"],
"pinned": true,
"rank": "5000"
},
{
"id": "c_periodization",
"label": "Periodization",
"note": "Planning training blocks with changing intensity.",
"tags": ["programming"],
"rank": "7000"
}
],
"triples": [
{
"subjectId": "c_strength_training",
"predicate": "has_subtopic",
"objectId": "c_periodization"
}
]
}