fix error in cnl-5 in R5 ballot

This commit is contained in:
Grahame Grieve 2022-10-05 21:19:52 +11:00
parent c7ef0a3ac6
commit ac3d4add7e
1 changed files with 7 additions and 0 deletions

View File

@ -45,6 +45,13 @@ public class FHIRPathExpressionFixer {
return ("name.exists() implies name.matches('[A-Z]([A-Za-z0-9_]){0,254}')");
}
// R5 ballot
if (expr.equals("url.matches('([^|#])*')")) {
return ("$this.matches('([^|#])*')");
}
// clarification in FHIRPath spec
if ("eld-19".equals(key)) {