Merge pull request #1560 from hapifhir/do-20240131-cda-ccda-cli-versions

Fix CDA and CCDA IG versions in CLI options
This commit is contained in:
Grahame Grieve 2024-02-28 05:22:39 +11:00 committed by GitHub
commit b6e58cbf50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -17,6 +17,7 @@
* Don't require HL7 committee for contained resources in HL7 namespace
* Fix where validator was ignoring minimum cardinality for XML attributes (especially in CDA)
* Improved ConceptMap validation
* Updated IG versions used for -cda and -ccda CLI validation options.
## Other code changes

View File

@ -327,12 +327,12 @@ public class ValidatorCli {
res.add("-version");
res.add("5.0");
res.add("-ig");
res.add("hl7.cda.uv.core#2.0.0-sd-ballot");
res.add("hl7.cda.uv.core#2.0.0-sd-snapshot1");
} else if (a.equals("-ccda")) {
res.add("-version");
res.add("5.0");
res.add("-ig");
res.add("hl7.cda.us.ccda#current");
res.add("hl7.cda.us.ccda#3.0.0-ballot");
} else if (a.equals("-view-definition")) {
res.add("-version");
res.add("5.0");