-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Story: Structured Export Format #185
Comments
Export format proposal: Example {
"@context": {
"@vocab": "https://glossarify-md.github.io/#",
"skos": "http://www.w3.org/2004/02/skos/core#",
"dc": "http://purl.org/dc/terms/",
"uri": "@id",
"type": "@type",
"label": "skos:prefLabel",
"definition": "skos:definition",
"terms": { "@container": "@id" },
"aliases": { "@container": "@set", "@id": "skos:altLabel" },
"abstract": "dc:abstract",
"title": "dc:title"
},
"uri": "https://my.org/glossary/#",
"type": "Glossary",
"title": "Glossary",
"language": "en",
"terms": {
"https://my.org/glossary/#Glossary": {
"type": "Term",
"label": "Glossary",
"abstract": "Glossaries are collections of terms and their definitions.",
"definition": "Glossaries are collections of terms and their definitions.",
"aliases": [
"Vocabulary"
]
},
"https://my.org/glossary/#Thesaurus": {
"type": "Term",
"label": "Thesaurus",
"abstract": "Thesauri are word nets.",
"definition": "Thesauri are word nets. They are informal sets of terms which are put into relation.",
"aliases": []
},
"https://my.org/glossary/#Taxonomy": {
"type": "Term",
"label": "Taxonomy",
"abstract": "Taxonomies are classification schemes.",
"definition": "Taxonomies are classification schemes. Terms in a taxonomy give names to sets of things. Classes are often put into relation via hierarchical relation ships to express super and subclasses of things.",
"aliases": []
}
}
} It uses a JSON-LD |
What's your user story?
See #181: Glossary terms found in glossary markdown files should be exported in a structured format (JSON). The export format should contain at least:
Requires #184.
The text was updated successfully, but these errors were encountered: