I've been implementing SB 1.0 for Paratext and there seems to be a problem with prefixedId fields. The regular expression to validate is:
^[0-9a-zA-Z][0-9a-zA-Z\\-]{1,31}::\\S+$
This seems to require a backslash and 'S' characters at the end of the string instead of non-whitespace characters. I'm fairly certain the last backslash should only be a single backslash:
^[0-9a-zA-Z][0-9a-zA-Z\\-]{1,31}::\S+$
I've been implementing SB 1.0 for Paratext and there seems to be a problem with prefixedId fields. The regular expression to validate is:
^[0-9a-zA-Z][0-9a-zA-Z\\-]{1,31}::\\S+$
This seems to require a backslash and 'S' characters at the end of the string instead of non-whitespace characters. I'm fairly certain the last backslash should only be a single backslash:
^[0-9a-zA-Z][0-9a-zA-Z\\-]{1,31}::\S+$