You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have lots of identifier namespaces such as issn, isbn, doi etc. I'm not sure whether they are validated or not. You can enter a regex in the namespace definition - is there a validation function active and where they get checked? If so, we should write regexes for the namespaces.
The text was updated successfully, but these errors were encountered:
if (nameSpaceRules[obj.namespace.value] &&!(val ==~ nameSpaceRules[obj.namespace.value])) {
return ['illegalIdForm.'+ obj.namespace.value ]
}
})
}
A better approach would be to use the pattern field from IdentifierNamespace, although this would also not encompass verifying check digits etc., not to mention ISBNs (hyphenation, 13vs10).
We have lots of identifier namespaces such as issn, isbn, doi etc. I'm not sure whether they are validated or not. You can enter a regex in the namespace definition - is there a validation function active and where they get checked? If so, we should write regexes for the namespaces.
The text was updated successfully, but these errors were encountered: