Closed ahochsteger closed 6 months ago
A string template literal like ${string}.${string} currently produces a string pattern of "^.*..*$" in the resulting JSON schema while the correct pattern would be "^.*\\..*$".
${string}.${string}
"^.*..*$"
"^.*\\..*$"
A string template literal like
${string}.${string}
currently produces a string pattern of"^.*..*$"
in the resulting JSON schema while the correct pattern would be"^.*\\..*$"
.