Skip to content

Commit

Permalink
YDA-5605: make Scopus ID validation less strict
Browse files Browse the repository at this point in the history
Scopus Helpdesk confirmed that there is no standard for the
number of digits in a Scopus ID, so we will accept any length.
  • Loading branch information
stsnel authored and lwesterhof committed Feb 20, 2024
1 parent 4aabcb9 commit 7d7449e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schemas/core-2/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@
"Name_Identifier": {
"type": "string",
"title": "Identifier",
"pattern": "[0-9]{11}"
"pattern": "[0-9]+"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/default-3/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@
"Name_Identifier": {
"type": "string",
"title": "Identifier",
"pattern": "[0-9]{11}"
"pattern": "[0-9]+"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion schemas/epos-msl-0/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@
"Name_Identifier": {
"type": "string",
"title": "Identifier",
"pattern": "[0-9]{11}"
"pattern": "[0-9]+"
}
}
}
Expand Down

0 comments on commit 7d7449e

Please sign in to comment.