get tests passing
This commit is contained in:
parent
2f304a6576
commit
3d039a89eb
|
@ -62,7 +62,7 @@ public class NpmPackageTests {
|
|||
|
||||
|
||||
private void checkNpm(NpmPackage npm) throws IOException {
|
||||
Assertions.assertEquals(2, npm.list("other").size());
|
||||
Assertions.assertEquals(1, npm.list("other").size());
|
||||
Assertions.assertEquals("help.png", npm.list("other").get(0));
|
||||
Assertions.assertEquals(1, npm.list("package").size());
|
||||
Assertions.assertEquals("StructureDefinition-Definition.json", npm.list("package").get(0));
|
||||
|
|
|
@ -722,9 +722,17 @@ public class NpmPackage {
|
|||
public List<String> list(String folder) throws IOException {
|
||||
List<String> res = new ArrayList<String>();
|
||||
if (folders.containsKey(folder)) {
|
||||
res.addAll(folders.get(folder).listFiles());
|
||||
for (String s : folders.get(folder).listFiles()) {
|
||||
if (!s.startsWith(".")) {
|
||||
res.add(s);
|
||||
}
|
||||
}
|
||||
} else if (folders.containsKey(Utilities.path("package", folder))) {
|
||||
res.addAll(folders.get(Utilities.path("package", folder)).listFiles());
|
||||
for (String s : folders.get(Utilities.path("package", folder)).listFiles()) {
|
||||
if (!s.startsWith(".")) {
|
||||
res.add(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
@ -1174,6 +1182,7 @@ public class NpmPackage {
|
|||
System.out.println(name+" is null");
|
||||
} else {
|
||||
indexer.seeFile(s, b);
|
||||
indexer.seeOidsInFile(s, b);
|
||||
if (!s.equals(".index.json") && !s.equals(".index.db") && !s.equals("package.json")) {
|
||||
TarArchiveEntry entry = new TarArchiveEntry(name);
|
||||
entry.setSize(b.length);
|
||||
|
@ -1189,6 +1198,12 @@ public class NpmPackage {
|
|||
tar.putArchiveEntry(entry);
|
||||
tar.write(cnt);
|
||||
tar.closeArchiveEntry();
|
||||
cnt = JsonParser.composeBytes(indexer.getOidIndex(), true);
|
||||
entry = new TarArchiveEntry(n+"/.oids.json");
|
||||
entry.setSize(cnt.length);
|
||||
tar.putArchiveEntry(entry);
|
||||
tar.write(cnt);
|
||||
tar.closeArchiveEntry();
|
||||
var file = new File(filename);
|
||||
if (file.exists()) {
|
||||
cnt = TextFile.fileToBytes(file);
|
||||
|
|
|
@ -4143,7 +4143,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Wrong Display Name 'Consultation note' for http://loinc.org#11488-4 - should be one of 31 choices: 'Consult note', 'Consult note', '临床文档型' (zh-CN), '临床文档' (zh-CN), '文档' (zh-CN), '文书' (zh-CN), '医疗文书' (zh-CN), '临床医疗文书 事件发生的地方' (zh-CN), '场景' (zh-CN), '环境' (zh-CN), '背景 会诊(咨询、会诊咨询、磋商、商讨会)记录 发现是一个原子型临床观察指标,并不是作为印象的概括陈述。体格检查、病史、系统检查及其他此类观察指标的属性均为发现。它们的标尺对于编码型发现可能是名义型,而对于叙述型文本之中所报告的发现,则可能是叙述型。' (zh-CN), '发现物' (zh-CN), '所见' (zh-CN), '结果' (zh-CN), '结论 文档本体' (zh-CN), '临床文档本体' (zh-CN), '文档本体' (zh-CN), '文书本体' (zh-CN), '医疗文书本体' (zh-CN), '临床医疗文书本体 时刻' (zh-CN), '随机' (zh-CN), '随意' (zh-CN), '瞬间 未加明确说明的角色 笔记' (zh-CN), '按语' (zh-CN), '注释' (zh-CN), '说明' (zh-CN), '票据' (zh-CN), '单据' (zh-CN), '证明书' (zh-CN), 'Documentazione dell'ontologia Osservazione Punto nel tempo (episodio) Ruolo non specificato' (it-IT) or 'Bericht' (de-AT) (for the language(s) '--') (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4165,7 +4164,6 @@ v: {
|
|||
"code" : "11488-4",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4187,7 +4185,6 @@ v: {
|
|||
"code" : "11488-4",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4208,7 +4205,6 @@ v: {
|
|||
"code" : "10164-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4229,7 +4225,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#10164-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4250,7 +4245,6 @@ v: {
|
|||
"code" : "10164-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4271,7 +4265,6 @@ v: {
|
|||
"code" : "10164-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4293,7 +4286,6 @@ v: {
|
|||
"code" : "10164-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4314,7 +4306,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10153-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10153-2' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4335,7 +4326,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10153-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10153-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4356,7 +4346,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10153-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10153-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-DocumentSectionType--1|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4377,7 +4366,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10153-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10153-2' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4398,7 +4386,6 @@ v: {
|
|||
"code" : "10160-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4419,7 +4406,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#10160-0' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4440,7 +4426,6 @@ v: {
|
|||
"code" : "10160-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4461,7 +4446,6 @@ v: {
|
|||
"code" : "10160-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4483,7 +4467,6 @@ v: {
|
|||
"code" : "10160-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4504,7 +4487,6 @@ v: {
|
|||
"code" : "10155-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4525,7 +4507,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#10155-0' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4546,7 +4527,6 @@ v: {
|
|||
"code" : "10155-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4567,7 +4547,6 @@ v: {
|
|||
"code" : "10155-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4589,7 +4568,6 @@ v: {
|
|||
"code" : "10155-0",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4610,7 +4588,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10157-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10157-2' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4631,7 +4608,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10157-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10157-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4652,7 +4628,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10157-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10157-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-DocumentSectionType--1|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4673,7 +4648,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10157-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10157-2' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4694,7 +4668,6 @@ v: {
|
|||
"code" : "29762-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4715,7 +4688,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#29762-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4736,7 +4708,6 @@ v: {
|
|||
"code" : "29762-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4757,7 +4728,6 @@ v: {
|
|||
"code" : "29762-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4779,7 +4749,6 @@ v: {
|
|||
"code" : "29762-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4800,7 +4769,6 @@ v: {
|
|||
"code" : "11384-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4821,7 +4789,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#11384-5' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4842,7 +4809,6 @@ v: {
|
|||
"code" : "11384-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4863,7 +4829,6 @@ v: {
|
|||
"code" : "11384-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4885,7 +4850,6 @@ v: {
|
|||
"code" : "11384-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4906,7 +4870,6 @@ v: {
|
|||
"code" : "8716-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4927,7 +4890,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#8716-3' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4948,7 +4910,6 @@ v: {
|
|||
"code" : "8716-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4969,7 +4930,6 @@ v: {
|
|||
"code" : "8716-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -4991,7 +4951,6 @@ v: {
|
|||
"code" : "8716-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5012,7 +4971,6 @@ v: {
|
|||
"code" : "8709-8",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5033,7 +4991,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#8709-8' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5054,7 +5011,6 @@ v: {
|
|||
"code" : "8709-8",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5075,7 +5031,6 @@ v: {
|
|||
"code" : "8709-8",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5097,7 +5052,6 @@ v: {
|
|||
"code" : "8709-8",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5118,7 +5072,6 @@ v: {
|
|||
"code" : "8710-6",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5139,7 +5092,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#8710-6' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5160,7 +5112,6 @@ v: {
|
|||
"code" : "8710-6",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5181,7 +5132,6 @@ v: {
|
|||
"code" : "8710-6",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5203,7 +5153,6 @@ v: {
|
|||
"code" : "8710-6",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5224,7 +5173,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10223-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10223-2' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5245,7 +5193,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10223-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10223-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5266,7 +5213,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10223-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10223-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-DocumentSectionType--1|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5287,7 +5233,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "Unknown Code '10223-2' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#10223-2' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5308,7 +5253,6 @@ v: {
|
|||
"code" : "11502-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5329,7 +5273,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#11502-2' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5350,7 +5293,6 @@ v: {
|
|||
"code" : "11502-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5371,7 +5313,6 @@ v: {
|
|||
"code" : "11502-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5393,7 +5334,6 @@ v: {
|
|||
"code" : "11502-2",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5414,7 +5354,6 @@ v: {
|
|||
"code" : "29554-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5435,7 +5374,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#29554-3' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5456,7 +5394,6 @@ v: {
|
|||
"code" : "29554-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5477,7 +5414,6 @@ v: {
|
|||
"code" : "29554-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5499,7 +5435,6 @@ v: {
|
|||
"code" : "29554-3",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5520,7 +5455,6 @@ v: {
|
|||
"code" : "11496-7",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5541,7 +5475,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#11496-7' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5562,7 +5495,6 @@ v: {
|
|||
"code" : "11496-7",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5583,7 +5515,6 @@ v: {
|
|||
"code" : "11496-7",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5605,7 +5536,6 @@ v: {
|
|||
"code" : "11496-7",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5626,7 +5556,6 @@ v: {
|
|||
"code" : "18776-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5647,7 +5576,6 @@ v: {
|
|||
"severity" : "error",
|
||||
"error" : "The provided code 'http://loinc.org#18776-5' is not in the value set 'http://terminology.hl7.org/ValueSet/v3-QualityMeasureSectionType--0|2.0.0' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5668,7 +5596,6 @@ v: {
|
|||
"code" : "18776-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5689,7 +5616,6 @@ v: {
|
|||
"code" : "18776-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5711,7 +5637,6 @@ v: {
|
|||
"code" : "18776-5",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5732,7 +5657,6 @@ v: {
|
|||
"code" : "24320-4",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5753,7 +5677,6 @@ v: {
|
|||
"code" : "24320-4",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5774,7 +5697,6 @@ v: {
|
|||
"code" : "24320-4",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
@ -5796,6 +5718,48 @@ v: {
|
|||
"code" : "24320-4",
|
||||
"system" : "http://loinc.org",
|
||||
"version" : "2.74",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
||||
}
|
||||
-------------------------------------------------------------------------------------
|
||||
{"code" : {
|
||||
"system" : "http://loinc.org",
|
||||
"code" : "X-34133-9",
|
||||
"display" : "SoEN"
|
||||
}, "valueSet" :null, "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "valueSetMode":"ALL_CHECKS", "displayWarningMode":"false", "versionFlexible":"false", "profile": {
|
||||
"resourceType" : "Parameters",
|
||||
"parameter" : [{
|
||||
"name" : "profile-url",
|
||||
"valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891"
|
||||
}]
|
||||
}}####
|
||||
v: {
|
||||
"severity" : "error",
|
||||
"error" : "Unknown Code 'X-34133-9' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#X-34133-9' is not in the value set 'http://hl7.org/fhir/ValueSet/@all' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
}
|
||||
|
||||
}
|
||||
-------------------------------------------------------------------------------------
|
||||
{"code" : {
|
||||
"system" : "http://loinc.org",
|
||||
"code" : "X-34133-9"
|
||||
}, "url": "http://hl7.org/fhir/ValueSet/doc-typecodes--0", "version": "4.0.1", "langs":"", "useServer":"true", "useClient":"false", "guessSystem":"false", "valueSetMode":"ALL_CHECKS", "displayWarningMode":"false", "versionFlexible":"false", "profile": {
|
||||
"resourceType" : "Parameters",
|
||||
"parameter" : [{
|
||||
"name" : "profile-url",
|
||||
"valueString" : "http://hl7.org/fhir/ExpansionProfile/dc8fd4bc-091a-424a-8a3b-6198ef146891"
|
||||
}]
|
||||
}}####
|
||||
v: {
|
||||
"severity" : "error",
|
||||
"error" : "Unknown Code 'X-34133-9' in the system 'http://loinc.org|2.74'; The provided code 'http://loinc.org#X-34133-9' is not in the value set 'http://hl7.org/fhir/ValueSet/doc-typecodes--0|4.0.1' (from Tx-Server)",
|
||||
"class" : "UNKNOWN",
|
||||
"unknown-systems" : "",
|
||||
"issues" : {
|
||||
"resourceType" : "OperationOutcome"
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -20,7 +20,7 @@
|
|||
<properties>
|
||||
<guava_version>32.0.1-jre</guava_version>
|
||||
<hapi_fhir_version>6.4.1</hapi_fhir_version>
|
||||
<validator_test_case_version>1.4.9</validator_test_case_version>
|
||||
<validator_test_case_version>1.4.10-SNAPSHOT</validator_test_case_version>
|
||||
<jackson_version>2.15.2</jackson_version>
|
||||
<junit_jupiter_version>5.9.2</junit_jupiter_version>
|
||||
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>
|
||||
|
|
Loading…
Reference in New Issue