2022-09-01 09:26:04 +02:00
|
|
|
/**
|
|
|
|
* Creating a sidebar enables you to:
|
|
|
|
- create an ordered group of docs
|
|
|
|
- render a sidebar for each doc of that group
|
|
|
|
- provide next/previous navigation
|
|
|
|
|
|
|
|
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
|
|
|
|
|
|
Create as many sidebars as you want.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
|
|
const sidebars = {
|
2022-09-23 18:00:46 +02:00
|
|
|
mySidebar: [
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'intro'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: "Data model",
|
|
|
|
link: {type: 'doc', id: 'data-model/data-model'},
|
|
|
|
items: [
|
2022-10-06 12:10:53 +02:00
|
|
|
{ type: 'doc', id: 'data-model/pids-and-identifiers' },
|
2022-09-23 18:00:46 +02:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: "Entities",
|
|
|
|
link: {
|
|
|
|
type: 'generated-index',
|
|
|
|
description: 'The main entities of the OpenAIRE Research Graph are listed below.'
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{ type: 'doc', id: 'data-model/entities/result' },
|
|
|
|
{ type: 'doc', id: 'data-model/entities/data-source' },
|
|
|
|
{ type: 'doc', id: 'data-model/entities/organization' },
|
|
|
|
{ type: 'doc', id: 'data-model/entities/project' },
|
|
|
|
{ type: 'doc', id: 'data-model/entities/community' },
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'data-model/relationships'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "link",
|
|
|
|
label: "Public API",
|
|
|
|
href: "https://graph.openaire.eu/develop/overview.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'download'
|
|
|
|
},
|
2022-09-01 09:26:04 +02:00
|
|
|
{
|
2022-09-23 18:00:46 +02:00
|
|
|
type: 'category',
|
|
|
|
label: "Data provision",
|
|
|
|
link: {type: 'doc', id: 'data-provision/data-provision'},
|
|
|
|
items: [
|
2022-10-04 15:48:01 +02:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: "Aggregation",
|
|
|
|
link: {type: 'doc', id: 'data-provision/aggregation/aggregation'},
|
|
|
|
items: [
|
2022-11-08 17:16:11 +01:00
|
|
|
{ type: 'doc', id: 'data-provision/aggregation/doiboost', label: 'DOIBoost' },
|
2022-10-06 12:10:53 +02:00
|
|
|
{ type: 'doc', id: 'data-provision/aggregation/pubmed' },
|
2022-10-21 14:58:16 +02:00
|
|
|
{ type: 'doc', id: 'data-provision/aggregation/datacite' },
|
2022-11-08 17:16:11 +01:00
|
|
|
{ type: 'doc', id: 'data-provision/aggregation/ebi', label: 'EMBL-EBI' },
|
2022-10-04 15:48:01 +02:00
|
|
|
]
|
|
|
|
},
|
2022-09-23 18:00:46 +02:00
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: "Deduplication",
|
|
|
|
link: {type: 'doc', id: 'data-provision/deduplication/deduplication'},
|
|
|
|
items: [
|
|
|
|
{ type: 'doc', id: 'data-provision/deduplication/research-products' },
|
|
|
|
{ type: 'doc', id: 'data-provision/deduplication/organizations' },
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'category',
|
|
|
|
label: "Enrichment",
|
|
|
|
link: {type: 'doc', id: 'data-provision/enrichment/enrichment'},
|
|
|
|
items: [
|
|
|
|
{ type: 'doc', id: 'data-provision/enrichment/mining' },
|
|
|
|
{ type: 'doc', id: 'data-provision/enrichment/impact-scores' },
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{ type: 'doc', id: 'data-provision/post-cleaning' },
|
|
|
|
{ type: 'doc', id: 'data-provision/indexing' },
|
|
|
|
{ type: 'doc', id: 'data-provision/stats' },
|
|
|
|
]
|
2022-09-01 09:26:04 +02:00
|
|
|
},
|
2022-09-23 18:00:46 +02:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'services'
|
|
|
|
},
|
|
|
|
{
|
2022-11-09 12:27:45 +01:00
|
|
|
type: "link",
|
2022-09-23 18:00:46 +02:00
|
|
|
label: "Learning center",
|
2022-11-09 12:27:45 +01:00
|
|
|
href: "https://openplato.eu/"
|
2022-09-23 18:00:46 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'publications',
|
|
|
|
label: "Relevant publications"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'faq'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'license'
|
|
|
|
},
|
2022-09-29 18:00:42 +02:00
|
|
|
{
|
|
|
|
type: 'doc',
|
|
|
|
id: 'changelog'
|
|
|
|
},
|
2022-09-23 18:00:46 +02:00
|
|
|
]
|
2022-09-01 09:26:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = sidebars;
|