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 : [
{
type : 'category' ,
label : "Entities" ,
link : {
type : 'generated-index' ,
2023-02-23 12:50:36 +01:00
description : 'The main entities of the OpenAIRE Graph are listed below.'
2022-09-23 18:00:46 +02:00
} ,
items : [
2024-01-17 13:39:34 +01:00
{ type : 'doc' , id : 'data-model/entities/research-product' } ,
2022-09-23 18:00:46 +02:00
{ 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' } ,
]
} ,
{
2023-04-05 17:28:12 +02:00
type : 'category' ,
label : "Relationships" ,
link : {
type : 'generated-index' ,
description : 'This section describes the relationships between entities in the OpenAIRE Graph: they way they are modelled as well as the different relationship types currently supported.'
} ,
items : [
{ type : 'doc' , id : 'data-model/relationships/relationship-object' } ,
{ type : 'doc' , id : 'data-model/relationships/relationship-types' } ,
]
} ,
{ type : 'doc' , id : 'data-model/pids-and-identifiers' } ,
2022-09-23 18:00:46 +02:00
]
} ,
{
2024-01-11 17:05:41 +01:00
type : 'category' ,
label : "Public APIs" ,
link : { type : 'doc' , id : 'apis/home' } ,
items : [
2024-07-05 16:55:58 +02:00
{
type : 'category' ,
label : "Graph API" ,
2024-07-12 16:21:11 +02:00
link : { type : 'doc' , id : 'apis/graph-api/graph-api' } ,
2024-07-05 16:55:58 +02:00
items : [
2024-07-11 18:56:14 +02:00
{ type : 'doc' , id : 'apis/graph-api/getting-a-single-entity' } ,
2024-07-05 16:55:58 +02:00
{
type : 'category' ,
2024-07-11 18:56:14 +02:00
label : "Searching entities" ,
2024-07-12 16:21:11 +02:00
link : { type : 'doc' , id : 'apis/graph-api/searching-entities/searching-entities' } ,
2024-07-05 16:55:58 +02:00
items : [
2024-07-11 18:56:14 +02:00
{ type : 'doc' , id : 'apis/graph-api/searching-entities/filtering-search-results' } ,
{ type : 'doc' , id : 'apis/graph-api/searching-entities/sorting-and-paging' } ,
2024-07-05 16:55:58 +02:00
]
2024-07-10 20:22:13 +02:00
} ,
{ type : 'doc' , id : 'apis/graph-api/making-requests' } ,
2024-07-05 16:55:58 +02:00
]
} ,
2024-01-11 17:05:41 +01:00
{
type : 'category' ,
label : "Search API" ,
link : { type : 'doc' , id : 'apis/search-api/search-api' } ,
items : [
2024-01-17 14:56:05 +01:00
{ type : 'doc' , id : 'apis/search-api/research-products' } ,
2024-01-11 17:05:41 +01:00
{ type : 'doc' , id : 'apis/search-api/projects' } ,
{ type : 'doc' , id : 'apis/search-api/response-metadata-format' } ,
]
} ,
{
type : "link" ,
label : "ScholeXplorer API" ,
href : "https://api.scholexplorer.openaire.eu/swagger-ui/index.html?urls.primaryName=Scholexplorer%20API%20V2.0"
} ,
{
type : "doc" ,
id : "apis/dspace-eprints-api" ,
} ,
{
type : "doc" ,
id : "apis/broker-api"
} ,
{ type : 'doc' , id : 'apis/terms' } ,
2024-01-15 18:40:20 +01:00
{ type : 'doc' , id : 'apis/authentication' } ,
2024-01-11 17:05:41 +01:00
{ type : 'doc' , id : 'apis/specification-changelog' } ,
]
2022-09-23 18:00:46 +02:00
} ,
{
2022-12-06 17:43:54 +01:00
type : 'category' ,
label : "Downloads" ,
link : {
type : 'generated-index' ,
2023-02-03 12:35:26 +01:00
description : 'All resources, available for download, are listed below. For the versions available in Zenodo, please refer to the Changelog section.'
2022-12-06 17:43:54 +01:00
} ,
items : [
{ type : 'doc' , id : 'downloads/full-graph' } ,
{ type : 'doc' , id : 'downloads/beginners-kit' } ,
{ type : 'doc' , id : 'downloads/subgraphs' } ,
{ type : 'doc' , id : 'downloads/related-datasets' } ,
]
} ,
2022-09-01 09:26:04 +02:00
{
2022-09-23 18:00:46 +02:00
type : 'category' ,
2022-12-20 16:55:04 +01:00
label : "Graph production workflow" ,
2023-03-15 19:19:49 +01:00
link : { type : 'doc' , id : 'graph-production-workflow/graph-production-workflow' } ,
2022-09-23 18:00:46 +02:00
items : [
2022-10-04 15:48:01 +02:00
{
type : 'category' ,
label : "Aggregation" ,
2023-03-15 19:19:49 +01:00
link : { type : 'doc' , id : 'graph-production-workflow/aggregation/aggregation' } ,
2022-10-04 15:48:01 +02:00
items : [
2022-12-20 16:55:04 +01:00
{
type : 'doc' ,
label : "OpenAIRE compatible sources" ,
2023-03-15 19:19:49 +01:00
id : 'graph-production-workflow/aggregation/compatible-sources' ,
2022-12-20 16:55:04 +01:00
} ,
{
type : 'category' ,
label : "Non-compatible sources" ,
link : { type : 'generated-index' } ,
items : [
2024-07-15 15:04:16 +02:00
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/crossref_unpaywall' , label : 'Crossref & Unpaywall' } ,
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/mag' , label : 'Microsoft Academic Graph' } ,
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/orcid' , label : 'ORCID' } ,
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/pubmed' } ,
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/datacite' } ,
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/ebi' , label : 'EMBL-EBI' } ,
{ type : 'doc' , id : 'graph-production-workflow/aggregation/non-compatible-sources/uniprot' , label : 'UniProtKB/Swiss-Prot' }
2022-12-20 16:55:04 +01:00
]
}
2022-10-04 15:48:01 +02:00
]
} ,
2022-12-20 16:55:04 +01:00
{
type : 'doc' ,
2023-03-15 19:19:49 +01:00
id : 'graph-production-workflow/merge-by-id'
2022-12-20 16:55:04 +01:00
} ,
2024-07-26 10:03:21 +02:00
{
type : 'category' ,
label : "Enrichment by PID" ,
link : { type : 'doc' , id : 'graph-production-workflow/enrichment-by-pid/enrichment-by-pid' } ,
items : [
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-pid/orcid-enrichment' }
]
} ,
2022-12-20 16:55:04 +01:00
{
type : 'category' ,
label : "Enrichment by mining" ,
2023-03-22 13:56:06 +01:00
link : { type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/enrichment-by-mining' } ,
2022-12-20 16:55:04 +01:00
items : [
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/affiliation_matching' } ,
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/citation_matching' } ,
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/classifies' } ,
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/documents_similarity' } ,
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/acks' } ,
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/cites' } ,
{ type : 'doc' , id : 'graph-production-workflow/enrichment-by-mining/metadata_extraction' } ,
2022-12-20 16:55:04 +01:00
]
} ,
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/cleaning' } ,
2022-09-23 18:00:46 +02:00
{
type : 'category' ,
label : "Deduplication" ,
2023-03-15 19:19:49 +01:00
link : { type : 'doc' , id : 'graph-production-workflow/deduplication/deduplication' } ,
2022-09-23 18:00:46 +02:00
items : [
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/deduplication/research-products' } ,
{ type : 'doc' , id : 'graph-production-workflow/deduplication/organizations' } ,
2022-09-23 18:00:46 +02:00
]
} ,
{
2022-12-20 16:55:04 +01:00
type : 'category' ,
2022-12-21 16:03:44 +01:00
label : "Deduction & propagation" ,
2022-12-20 16:55:04 +01:00
link : {
type : 'generated-index' ,
2023-02-23 12:50:36 +01:00
description : 'The OpenAIRE Graph is further enriched by the deduction and propagation processes descibed in this section.'
2022-12-20 16:55:04 +01:00
2022-11-30 17:09:31 +01:00
} ,
2022-09-23 18:00:46 +02:00
items : [
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/deduction-and-propagation/bulk-tagging' } ,
{ type : 'doc' , id : 'graph-production-workflow/deduction-and-propagation/propagation' } ,
2022-12-20 16:55:04 +01:00
]
} ,
{
type : 'category' ,
label : "Indicators ingestion" ,
2023-03-15 19:19:49 +01:00
link : { type : 'doc' , id : 'graph-production-workflow/indicators-ingestion/indicators-ingestion' } ,
2022-11-17 14:21:38 +01:00
2022-12-20 16:55:04 +01:00
items : [
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/indicators-ingestion/impact-indicators' } ,
{ type : 'doc' , id : 'graph-production-workflow/indicators-ingestion/usage-counts' } ,
2022-09-23 18:00:46 +02:00
]
} ,
2023-03-15 19:19:49 +01:00
{ type : 'doc' , id : 'graph-production-workflow/finalisation' } ,
{ type : 'doc' , id : 'graph-production-workflow/indexing' } ,
{ type : 'doc' , id : 'graph-production-workflow/stats' }
2022-09-23 18:00:46 +02:00
]
2022-09-01 09:26:04 +02:00
} ,
2023-06-05 16:41:15 +02:00
// {
// type: "link",
// label: "Learning center",
// href: "https://openplato.eu/"
// },
2022-09-23 18:00:46 +02:00
{
type : 'doc' ,
id : 'publications' ,
label : "Relevant publications"
} ,
2022-12-21 13:40:05 +01:00
// {
// type: 'doc',
// id: 'faq'
// },
2022-09-23 18:00:46 +02:00
{
type : 'doc' ,
id : 'license'
} ,
2022-09-29 18:00:42 +02:00
{
type : 'doc' ,
id : 'changelog'
} ,
2023-01-09 19:05:03 +01:00
{
type : "link" ,
label : "Helpdesk" ,
href : "https://graph.openaire.eu/support"
} ,
2024-01-24 16:08:36 +01:00
{
type : "link" ,
label : "User forum" ,
href : "https://openaire.flarum.cloud/"
}
2022-09-23 18:00:46 +02:00
]
2022-09-01 09:26:04 +02:00
} ;
module . exports = sidebars ;