Skip to content

Commit

Permalink
Merge pull request #2406 from NCEAS/feature-2372-mdq-version-update
Browse files Browse the repository at this point in the history
Update default metadata assessment suite version to 0.4.0
  • Loading branch information
robyngit authored May 6, 2024
2 parents d3b19ec + 873bd39 commit 04c3fcf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions src/js/models/AppModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -881,33 +881,33 @@ define(['jquery', 'underscore', 'backbone'],
/**
* The URL for the DataONE metadata assessment service
* @type {string}
* @default "https://docker-ucsb-4.dataone.org:30443/quality"
* @default "https://api.dataone.org/quality"
*/
mdqBaseUrl: "https://docker-ucsb-4.dataone.org:30443/quality",
mdqBaseUrl: "https://api.dataone.org/quality",
/**
* Metadata Assessment Suite IDs for the dataset assessment reports.
* @type {string[]}
* @default ["FAIR-suite-0.3.1"]
* @default ["FAIR-suite-0.4.0"]
*/
mdqSuiteIds: ["FAIR-suite-0.3.1"],
mdqSuiteIds: ["FAIR-suite-0.4.0"],
/**
* Metadata Assessment Suite labels for the dataset assessment reports
* @type {string[]}
* @default ["FAIR Suite v0.3.1"]
* @default ["FAIR Suite v0.4.0"]
*/
mdqSuiteLabels: ["FAIR Suite v0.3.1"],
mdqSuiteLabels: ["FAIR Suite v0.4.0"],
/**
* Metadata Assessment Suite IDs for the aggregated assessment charts
* @type {string[]}
* @default ["FAIR-suite-0.3.1"]
* @default ["FAIR-suite-0.4.0"]
*/
mdqAggregatedSuiteIds: ["FAIR-suite-0.3.1"],
mdqAggregatedSuiteIds: ["FAIR-suite-0.4.0"],
/**
* Metadata Assessment Suite labels for the aggregated assessment charts
* @type {string[]}
* @default ["FAIR Suite v0.3.1"]
* @default ["FAIR Suite v0.4.0"]
*/
mdqAggregatedSuiteLabels: ["FAIR Suite v0.3.1"],
mdqAggregatedSuiteLabels: ["FAIR Suite v0.4.0"],
/**
* The metadata formats for which to display metadata assessment reports
* @type {string[]}
Expand Down
6 changes: 3 additions & 3 deletions src/js/themes/arctic/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ MetacatUI.AppConfig = Object.assign(
nodeId: "urn:node:ARCTIC",

//Metadata quality
mdqSuiteIds: ["arctic.data.center.suite.1", "FAIR-suite-0.3.1"],
mdqSuiteIds: ["arctic.data.center.suite-1.2.0", "FAIR-suite-0.4.0"],
mdqSuiteLabels: [
"Arctic Data Center Conformance Suite v1.0",
"FAIR Suite v0.3.1",
"Arctic Data Center Conformance Suite v1.2",
"FAIR Suite v0.4.0",
],
mdqFormatIds: ["eml*", "https://eml*"],
displayDatasetQualityMetric: true,
Expand Down
4 changes: 2 additions & 2 deletions src/js/themes/knb/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ MetacatUI.AppConfig = Object.assign({

//Metadata assessments
displayDatasetQualityMetric: true,
mdqSuiteIds: ["knb.suite.1"],
mdqSuiteLabels: ["KNB Metadata Completeness Suite v1.0"],
mdqSuiteIds: ["FAIR-suite-0.4.0"],
mdqSuiteLabels: ["FAIR Suite v0.4.0"],
mdqFormatIds:["eml*", "https://eml*"],

//Portals
Expand Down

0 comments on commit 04c3fcf

Please sign in to comment.