diff --git a/src/app/openaireLibrary b/src/app/openaireLibrary index 622459c..6c4a4d9 160000 --- a/src/app/openaireLibrary +++ b/src/app/openaireLibrary @@ -1 +1 @@ -Subproject commit 622459c26c5db0c832e9b159d0558b15b86800c8 +Subproject commit 6c4a4d9721030ad43ca7e4112a9bc8c548557123 diff --git a/src/app/public-logs/public-logs.component.ts b/src/app/public-logs/public-logs.component.ts index 7ba2524..c811a44 100644 --- a/src/app/public-logs/public-logs.component.ts +++ b/src/app/public-logs/public-logs.component.ts @@ -5,13 +5,19 @@ import {SEOService} from '../openaireLibrary/sharedComponents/SEO/SEO.service'; import {PiwikService} from '../openaireLibrary/utils/piwik/piwik.service'; import {Meta, Title} from '@angular/platform-browser'; import {LogService} from "../openaireLibrary/utils/log/log.service"; +import {Breadcrumb} from '../openaireLibrary/utils/breadcrumbs/breadcrumbs.component'; @Component({ selector: 'public-logs', template: ` -
-
-

Web Statistics & Activity Logs

+
+
+
+ +
+
+

Web Statistics & Activity Logs

+
@@ -85,6 +91,7 @@ import {LogService} from "../openaireLibrary/utils/log/log.service"; ` }) export class PublicLogsComponent extends BaseComponent implements OnInit { + breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'resources - web statistics & activity logs'}]; isConsent = false; redirectUrl = null; startDate = new Date(); diff --git a/src/app/public-logs/public-logs.module.ts b/src/app/public-logs/public-logs.module.ts index 814cac3..759c372 100644 --- a/src/app/public-logs/public-logs.module.ts +++ b/src/app/public-logs/public-logs.module.ts @@ -3,6 +3,7 @@ import {CommonModule} from '@angular/common'; import {PublicLogsComponent} from "./public-logs.component"; import {LogServiceModule} from "../openaireLibrary/utils/log/LogService.module"; import {Route, RouterModule} from "@angular/router"; +import {BreadcrumbsModule} from '../openaireLibrary/utils/breadcrumbs/breadcrumbs.module'; const routes: Route[] = [ { @@ -14,7 +15,7 @@ const routes: Route[] = [ @NgModule({ declarations: [PublicLogsComponent], imports: [ - CommonModule, RouterModule.forChild(routes), LogServiceModule, RouterModule + CommonModule, RouterModule.forChild(routes), LogServiceModule, RouterModule, BreadcrumbsModule ], exports: [PublicLogsComponent] }) diff --git a/src/app/resources/engagement/engagement.component.html b/src/app/resources/engagement/engagement.component.html new file mode 100644 index 0000000..e55610c --- /dev/null +++ b/src/app/resources/engagement/engagement.component.html @@ -0,0 +1,78 @@ +
+
+
+ +
+
+

Engage, learn, and contribute to the Open Science community.

+
Explore essential resources and activities that enhance your interaction with the National Open Access Monitor of Ireland.
+
+
+ + + + +
+
+
+
+
+
+
+
+
+ Webinar +
1st Stakeholder Webinar
+
+ +
+
+
+
+
+
+
+ Training + RFO +
RFO Training
+
+ +
+
+
+
+
+
+
+ Training + RPO +
RPO Training
+
+ +
+
+
+
+
+
+
+
+
Contact us
+

Stay in the loop

+
+ If you wish to stay updated on our engagement and training events, please contact us. We’ll ensure you’re informed about upcoming opportunities to connect and learn. +
+ contact us +
+
+
+ National Monitor Dashboard +
+
\ No newline at end of file diff --git a/src/app/resources/engagement/engagement.component.less b/src/app/resources/engagement/engagement.component.less index 4e23ddd..b9902db 100644 --- a/src/app/resources/engagement/engagement.component.less +++ b/src/app/resources/engagement/engagement.component.less @@ -1,8 +1,65 @@ @import (reference) "~src/assets/extend-theme/less/_import-variables.less"; +@import (reference) "~src/assets/openaire-theme/less/mixin.less"; @training-color: #A8B9FF; @webinar-color: #E0C44F; +.graphics { + grid-gap: 40px; + + .graphic { + max-width: 213px; + + &.graphic1 { + transform: translateY(60%); + } + + &.graphic2 { + transform: translateY(45%); + } + + &.graphic3 { + transform: translateY(25%); + } + + &.graphic4 { + transform: translateY(45%); + } + } +} + +.card { + height: 325px; + background-repeat: no-repeat; + background-position: center; + + &.webinar { + background-image: url("~/src/assets/irish-assets/resources/resources-green.png"); + } + + &.training { + background-image: url("~/src/assets/irish-assets/resources/resources-pink-blue.png"); + } + + .info { + height: 50%; + .set-blur-background(@dark-color, 50%, brightness(0.5) blur(20px)); + + a { + display: none; + } + } + + &:hover { + .info { + height: 100%; + + a { + display: inline-block; + } + } + } +} .uk-label.training { background-color: @training-color; border-color: @training-color; diff --git a/src/app/resources/engagement/engagement.component.ts b/src/app/resources/engagement/engagement.component.ts index 5f111e7..59fc3cb 100644 --- a/src/app/resources/engagement/engagement.component.ts +++ b/src/app/resources/engagement/engagement.component.ts @@ -4,59 +4,17 @@ import {PiwikService} from "../../openaireLibrary/utils/piwik/piwik.service"; import {ActivatedRoute, Router} from "@angular/router"; import {Meta, Title} from "@angular/platform-browser"; import {SEOService} from "../../openaireLibrary/sharedComponents/SEO/SEO.service"; +import {Breadcrumb} from "../../openaireLibrary/utils/breadcrumbs/breadcrumbs.component"; @Component({ selector: 'engagement', - template: ` -
-
-
-

Engage, learn, and contribute to the Open Science community.

-
Explore essential resources and activities that enhance your interaction with the National Open Access Monitor of Ireland.
-
-
-
-
-
-
-
- Webinar -
1st Stakeholder Webinar
- Learn more -
-
-
-
- Training - RFO -
RFO Training
- Learn more -
-
-
-
- Training - RPO -
RPO Training
- Learn more -
-
-
-
-
-
-
Contact us
-

Stay in the loop

-
If you wish to stay updated on our engagement and training events, please contact us. We’ll ensure you’re informed about upcoming opportunities to connect and learn.
- Contact us -
-
- `, + templateUrl: 'engagement.component.html', styleUrls: ['engagement.component.less'] }) export class EngagementComponent extends BaseComponent implements OnInit { title = 'Engagement & Training'; description = 'Engagement & Training'; + breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'resources - engagement & training'}]; constructor(protected _route: ActivatedRoute, protected _piwikService: PiwikService, diff --git a/src/app/resources/engagement/engagement.module.ts b/src/app/resources/engagement/engagement.module.ts index 8e5023d..2c88a3d 100644 --- a/src/app/resources/engagement/engagement.module.ts +++ b/src/app/resources/engagement/engagement.module.ts @@ -2,6 +2,7 @@ import {NgModule} from "@angular/core"; import {CommonModule} from "@angular/common"; import {EngagementComponent} from "./engagement.component"; import {RouterModule} from "@angular/router"; +import {BreadcrumbsModule} from "../../openaireLibrary/utils/breadcrumbs/breadcrumbs.module"; @NgModule({ declarations: [EngagementComponent], @@ -9,7 +10,7 @@ import {RouterModule} from "@angular/router"; { path: '', component: EngagementComponent } - ])], + ]), BreadcrumbsModule], exports: [EngagementComponent] }) export class EngagementModule { diff --git a/src/app/resources/how-it-works/about.component.html b/src/app/resources/how-it-works/about.component.html index f5a7dc2..8df72a9 100644 --- a/src/app/resources/how-it-works/about.component.html +++ b/src/app/resources/how-it-works/about.component.html @@ -1,14 +1,15 @@

About

-
- Welcome to the National Open Access Monitor, Ireland, a dynamic and innovative platform - designed to chart and foster the transition of Ireland’s scholarly output to 100% Open Access. +
+ Welcome to the National Open Access Monitor, Ireland, a dynamic and innovative platform + designed to chart and foster the transition of Ireland’s scholarly output to 100% Open Access. This project has been entrusted to OpenAIRE, following a contract awarded through a competitive tendering process by the Irish Research eLibrary (IReL) in collaboration with Education Procurement Services.
+ Take a look @@ -20,8 +21,7 @@ -

Our Mission

-
+
At the heart of this platform is the mission to provide transparent, comprehensive insights into the state of Open Access in Ireland. It serves as a key instrument for analyzing trends, identifying challenges, and guiding policy development towards achieving an open, accessible, and sustainable research environment. @@ -29,176 +29,155 @@ -

Context

-
- In 2022, the National Open Research Forum (NORF) awarded funding to six collaborative projects - to implement priority actions in Ireland’s National Action Plan for Open Research 2022-2030. - By building national capacity and infrastructure for open research, these projects support the visibility and impact - of Irish research and help progress Ireland’s strategic goals for research and innovation under Impact 2030. - Development of the National Open Access Monitor is one of the priority actions - and the funding for management of the project was awarded to IReL. - The tender requirements for the National Open Access Monitor and a definition for open access in this context were - both defined following consultation with national stakeholders. - The impact of the project will be to enable both point-in-time and longitudinal monitoring - of the open access status of Irish research publications as part of national implementation - and monitoring of open research practices. +
+

Context

+
+ In 2022, the National Open Research Forum (NORF) awarded funding to six collaborative projects + to implement priority actions in Ireland’s National Action Plan for Open Research 2022-2030. + By building national capacity and infrastructure for open research, these projects support the visibility and impact + of Irish research and help progress Ireland’s strategic goals for research and innovation under Impact 2030. + Development of the National Open Access Monitor is one of the priority actions + and the funding for management of the project was awarded to IReL. + The tender requirements for the National Open Access Monitor and a definition for open access in this context were + both defined following consultation with national stakeholders. + The impact of the project will be to enable both point-in-time and longitudinal monitoring + of the open access status of Irish research publications as part of national implementation + and monitoring of open research practices. +
-

About NORF

-
+

NORF

+
Ireland’s National Open Research Forum (NORF) was established in 2017 to drive the Irish agenda for open research. NORF provides a space for communication, consultation and cooperation among key stakeholders in the research system regarding strategic issues and overarching policies and procedures in open research. NORF developed Ireland’s National Framework on the Transition to an Open Research Environment (2019) and the National Action Plan for Open Research 2022-2030.
+ -

About IReL

-
+

IReL

+
IReL is the e-resource licensing consortium for Irish publicly funded higher education institutions and the lead organisation for the Irish ORCID Consortium. Since 2004, the IReL service (hosted by Maynooth University) has expanded from providing access to quality peer-reviewed online research publications and index & abstracting services, to facilitating open access publishing agreements, and managing the Irish ORCID Consortium.
+ -

About OpenAIRE

-
- OpenAIRE AMKE is a non-profit organization established in 2018 to create a European-wide national policy - and open scholarly communication infrastructure. - OpenAIRE started as a series of European Commission projects in 2010 before incorporating - and has built extensive experience in both technical infrastructure and working within the Open Science community. - Its mission is to establish, maintain, and operate an open and sustainable scholarly communication infrastructure - and provide the necessary services, resources, and network for supporting a common European open e-research and e-science environment. - OpenAIRE modus operandi includes applying and contributing to international best practices - to meet the needs of the research community and promote Open Science. In particular, OpenAIRE - -
    -
  • Adheres to and promotes key standards like the FAIR principles.
  • -
  • Provides the OpenAIRE Guidelines - for literature repositories, data archives, and Current Research Information Systems (CRIS) managers, - which (a) adapt global standards and schemas from RDA, COUNTER, COAR, DataCite, etc., - and (b) are adopted by organisations around the world.
  • -
  • As a key partner in delivering the EOSC CORE and the EOSC Interoperability Framework, - OpenAIRE ensures interoperability with the European Open Science Cloud (EOSC).
  • -
  • Supports Open Access policies and advocacy.
  • -
  • Provides capacity building and training for the Open Science community.
  • -
- +

OpenAIRE

+
+
+ OpenAIRE AMKE is a non-profit organization established in 2018 to create a European-wide national policy + and open scholarly communication infrastructure. + OpenAIRE started as a series of European Commission projects in 2010 before incorporating + and has built extensive experience in both technical infrastructure and working within the Open Science community. + Its mission is to establish, maintain, and operate an open and sustainable scholarly communication infrastructure + and provide the necessary services, resources, and network for supporting a common European open e-research and e-science environment. + OpenAIRE modus operandi includes applying and contributing to international best practices + to meet the needs of the research community and promote Open Science. In particular, OpenAIRE: +
+
+
    +
  • Adheres to and promotes key standards like the FAIR principles.
  • +
  • Provides the OpenAIRE Guidelines + for literature repositories, data archives, and Current Research Information Systems (CRIS) managers, + which (a) adapt global standards and schemas from RDA, COUNTER, COAR, DataCite, etc., + and (b) are adopted by organisations around the world.
  • +
  • As a key partner in delivering the EOSC CORE and the EOSC Interoperability Framework, + OpenAIRE ensures interoperability with the European Open Science Cloud (EOSC).
  • +
  • Supports Open Access policies and advocacy.
  • +
  • Provides capacity building and training for the Open Science community.
  • +
+
+
+
As Ireland moves towards an open research environment, this platform signifies a commitment to transparency, access, and the advancement of scientific communication. It is a crucial step in supporting Ireland's alignment with broader European and global movements towards accessible and open scientific research.
-
Discover more about this initiative in our Zenodo community, including related reports, presentations, and datasets.
- -
Thank you for joining us!
+
+ Thank you for joining us! +
+
+ -
-
-
-
-
- -
-
-
- -
-
+
+
+ +
+
+
+ +
+
+
+
-
-
-
-
-
- - - - - - - -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
+
+ NORF + IRel + OpenAIRE
-
-
-
-
-
- -
-
-
- -
-
-
-
+
+
+
-
-
-
- - - - - - - +
+
+
+ +
+
+
+
+ +
+
+
+
+ +
-
-
- -
-
- -
-
- -
-
- -
-
- -
+
+
\ No newline at end of file diff --git a/src/app/resources/how-it-works/about.component.less b/src/app/resources/how-it-works/about.component.less index 26ac83f..aba3c0a 100644 --- a/src/app/resources/how-it-works/about.component.less +++ b/src/app/resources/how-it-works/about.component.less @@ -1,12 +1,60 @@ +@import (reference) "~src/assets/extend-theme/less/_import-variables"; @import (reference) "~src/assets/openaire-theme/less/color.less"; +.hero { + background-image: url("~/src/assets/irish-assets/resources/irish-bg-blur.png"); + background-repeat: no-repeat; + background-position: center; + .about { + max-width: 500px; + } + .pilot { + max-width: 400px; + } + .logos { + grid-gap: 60px; + img { + height: 60px; + } + } +} +.context { + column-count: 2; + column-gap: 200px; +} +.card-bg { + background-repeat: no-repeat; + background-position: bottom; + &.norf { + background-image: url("~/src/assets/irish-assets/resources/norf-logo-blur.png"); + } + &.irel { + background-image: url("~/src/assets/irish-assets/resources/irel-logo-blur.png"); + } + &.openaire { + background-image: url("~/src/assets/irish-assets/resources/openaire-logo-blur.png"); + } +} + +@media (max-width: @breakpoint-small-max) { + .hero { + background-position: center bottom; + .logos { + grid-gap: 40px; + img { + height: 40px; + } + } + } + .context { + column-count: 1; + } +} + .uk-width-medium { width: 350px; } -@pilot-card-border-color: @info-border-color; - .uk-card.pilot { - border: 1px solid @pilot-card-border-color; box-shadow: none; } \ No newline at end of file diff --git a/src/app/resources/how-it-works/about.component.ts b/src/app/resources/how-it-works/about.component.ts index f9670f0..3f7f72c 100644 --- a/src/app/resources/how-it-works/about.component.ts +++ b/src/app/resources/how-it-works/about.component.ts @@ -6,6 +6,7 @@ import {Meta, Title} from "@angular/platform-browser"; import {SEOService} from "../../openaireLibrary/sharedComponents/SEO/SEO.service"; import {LayoutService} from "../../openaireLibrary/dashboard/sharedComponents/sidebar/layout.service"; import {HelperService} from "../../openaireLibrary/utils/helper/helper.service"; +import {Breadcrumb} from "../../openaireLibrary/utils/breadcrumbs/breadcrumbs.component"; @Component({ selector: 'about', @@ -15,6 +16,7 @@ import {HelperService} from "../../openaireLibrary/utils/helper/helper.service"; export class AboutComponent extends BaseComponent { title = 'About'; description = 'About'; + breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'resources - about'}]; tab: 'mission' | 'context' | 'norf' | 'irel' | 'openaire' = 'mission'; contentSections: string[] = ['entities', 'inherited-and-inferred-attributes', 'constructed-attributes']; activeSection: string; diff --git a/src/app/resources/how-it-works/how-it-works.module.ts b/src/app/resources/how-it-works/how-it-works.module.ts index 0ed67b2..e4a34a2 100644 --- a/src/app/resources/how-it-works/how-it-works.module.ts +++ b/src/app/resources/how-it-works/how-it-works.module.ts @@ -6,6 +6,8 @@ import {TheFiveMonitorsComponent} from "./the-five-monitors.component"; import {UserActionsComponent} from "./user-actions.component"; import {SliderTabsModule} from "../../openaireLibrary/sharedComponents/tabs/slider-tabs.module"; import {YouWeComponent} from "./you-we.component"; +import {BreadcrumbsModule} from "../../openaireLibrary/utils/breadcrumbs/breadcrumbs.module"; +import {IconsModule} from "../../openaireLibrary/utils/icons/icons.module"; @NgModule({ declarations: [AboutComponent, TheFiveMonitorsComponent, UserActionsComponent, YouWeComponent], @@ -31,7 +33,7 @@ import {YouWeComponent} from "./you-we.component"; component: UserActionsComponent, canDeactivate: [] } - ]), SliderTabsModule], + ]), SliderTabsModule, BreadcrumbsModule, IconsModule], exports: [] }) export class HowItWorksModule { diff --git a/src/app/resources/how-it-works/the-five-monitors.component.html b/src/app/resources/how-it-works/the-five-monitors.component.html index 80d9acb..ad5b7dc 100644 --- a/src/app/resources/how-it-works/the-five-monitors.component.html +++ b/src/app/resources/how-it-works/the-five-monitors.component.html @@ -1,4 +1,242 @@ -
+
+
+ +
+
+

+ Navigating Ireland’s Open Access +

+
+
+

+ 5 Tailored Dashboards for Insights. +

+
+
+ +
+
+ +
+
+
+
+
+
+
+ +
+
+

National Monitor.

+

The Broad Perspective.

+
+ The National Monitor offers an expansive view, featuring cross-country benchmarking and in-depth breakdowns specific to Ireland. It is meant to serve as a key resource for policymakers, publishers, and anyone interested in a comprehensive national overview. Take a look at the National Monitor for detailed insights into the broader Open Access landscape. +
+ Take a look +
+
+
+
+
+
+

+ Dive Deeper with Tailored Dashboards +

+
+ For RPOs, RFOs, Researchers, and Institutional Repositories, we invite you to explore your individual monitors. Each dashboard is equipped to give you a detailed understanding of your role and impact within Open Access research. Discover how each dashboard works in the sections below. +
+
+
+
+
+
+ + + +
+
+
+
    +
  • + + +
    +
    + Step 1a +

    Assign a Primary Dashboard Manager

    +

    Nominate a primary dashboard manager by filling out an application form. If you already have a primary dashboard manager or prefer not to be one, proceed to step 2.

    +
    +
    +
    + Step 2a +

    Find Your RPO's Monitor Dashboard

    +

    Head to the RPO Monitor page and look up your organization. If you can't find it or it appears under multiple names, please contact us.

    +
    +
    + Step 3a +

    Validate and approve the results.

    +

    You examine your dashboard and the showcased information to ensure you are satisfied with what you see.

    +
    +
    + +
    +
    + Step 1b +

    + Invite your RPOs Primary Manager via email +

    +

    Primary managers will have the ability to invite additional managers. They will also have access to our Sandbox environment for data previews and use of OpenOrgs, OpenAIRE's organization deduplication service.

    +
    +
    +
    + Step 2b +

    Troubleshoot your Monitor

    +

    We built your profile if it is missing and help you deduplicate your organization’s name via the OpenORgs service.

    +
    +
    + Step 3b +

    Interact with you Through 1-on-1 expert consultations

    +

    to understand any gaps and deviations within the dashboard to verify the data integrity

    +
    +
    +
    +
  • +
  • + + +
    +
    + Step 1a +

    Assign a Primary Dashboard Manager

    +

    Nominate a primary dashboard manager by completing our application form. If you already have a primary dashboard manager or prefer not to be one, proceed to step 2.

    +
    +
    +
    + Step 2a +

    Find Your RFO's Monitor Dashboard

    +

    Head to the RFO Monitor page and look up your organization. If you can't find it or it appears under multiple names, please contact us.

    +
    +
    + Step 3a +

    Discover Your Monitor and consider joining OpenAIRE (Optional)

    +

    Explore your personalized dashboard at your leisure. You have the option to join OpenAIRE, allowing us to develop a specialized text mining algorithm to enrich your profile. This marks the final step if you choose not to join OpenAIRE.

    +
    +
    +
    + Step 4a +

    Join OpenAIRE - You provide Information about your funded projects and join OpenAIRE.

    +

    All information is exchanged under confidential agreements and we only make public what you agree on. +

    +
    +
    +
    + Step 5a +

    validate the results and approve for them to be shown on your Monitor dashboard.

    +

    Examine your dashboard in the Sandbox environment and the showcased information to ensure you are satisfied with what you see.

    +
    +
    + +
    +
    + Step 1b +

    Invite your RFOs Primary Manager via email

    +

    Primary managers will have the ability to invite additional managers. They will also have access to our Sandbox environment for data previews and curation.

    +
    +
    +
    + Step 2b +

    Troubleshoot your Monitor

    +

    We built your profile if it is missing and help you with any additional issues

    +
    +
    + Step 3b +

    Interact with you Through 1-on-1 expert consultations

    +

    to understand any gaps and deviations within the dashboard to verify the data integrity

    +
    +
    + Step 4b +

    Ingest your project metadata and mine the OpenAIRE Graph.

    +

    We infer links to research results: publications, datasets, software, etc, via dedicated text mining algorithms.

    +
    +
    + Step 5b +

    Refine until you are happy with the results.

    +
    +
    +
    +
  • +
  • + + +
    +
    + Step 1a +

    Access Your Profile with ORCID iD

    +

    Log in using your ORCID iD to grant OpenAIRE access to your ORCID record. Then, visit the Researcher Monitors to search for your ORCID iD. If it’s not listed, contact us. Note that only research products affiliated with an Irish RPO will be displayed in your profile.

    +
    +
    +
    + Step 2a +

    Claim Additional Records

    +

    From your profile (click the circle with your initials at the top right), navigate to the 'My ORCID Links' page and allow OpenAIRE to enhance your ORCID record. Search for your research products and claim them. These will appear in your ORCID record following the next update of the OpenAIRE Graph.

    +
    +
    + +
    +
    + Step 1b +

    Troubleshoot your Monitor

    +

    If your profile is missing, we are here to help build it. Remember, OpenAIRE syncs with ORCID, so research products not in ORCID or unaffiliated with an Irish organization will not appear in your record.

    +
    +
    +
    + Step 2b +

    Support you in understanding any gaps or deviations within your dashboard and to provide assistance as needed.

    +
    +
    +
    +
  • +
  • + + +
    +
    + Step 1a +

    Find Your Repository’s Monitor Dashboard & Register to OpenAIRE PROVIDE

    +

    Navigate to the Repository Monitor page and search for your repository. If it is not listed, this indicates that you need to register with OpenAIRE. You can complete this process by following these instructions. If your repository already has a Monitor dashboard but your have not been registered in OpenAIRE PROVIDE, please contact us for assistance.

    +
    +
    +
    + Step 2a +

    Validate and approve the results.

    +

    You examine your dashboard and the showcased information to ensure you are satisfied with what you see.

    +
    +
    + +
    +
    + Step 1b +

    Invite you as a Manager via email

    +

    As a manager, you will receive access to the PROVIDE dashboard. OpenAIRE PROVIDE is a service designed for Institutional Repository Managers to register, validate, and enrich their records. It also offers insights into usage statistics, including views and downloads. This dashboard allows you to efficiently manage your records and comply with Open Access requirements.

    +
    +
    +
    + Step 2b +

    Interact with you through 1-on-1 expert consultations

    +

    to understand any gaps and deviations within the dashboard to verify the data integrity

    +
    +
    +
    +
  • +
+
+
+
+ + +