Skip to content

Commit

Permalink
Remove restriction for user custom schema urn prefix (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
pskamburov authored Oct 19, 2020
1 parent d343c58 commit 6574ba1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ default String removeValueFilterFromAttributeNotation(final String fullAttribute
}

static boolean isCustomSchema(final String schemaId) {
return schemaId.startsWith(Schema.EXTENSION_SCHEMA_URN);
return schemaId.matches(SCHEMA_PATTERN.toString());
}

static boolean isCoreSchema(final String schemaId) {
Expand Down

0 comments on commit 6574ba1

Please sign in to comment.