我正在使用Mule EE 3.5.2并迁移到3.6.2。我有一个带有json架构的RAML项目,它抛出一个错误mule无效的JSON架构错误:值有不正确的类型(找到布尔值,预期的[array]之一)。在进一步挖掘时,我发现所需的属性是违规的,如https://github.com/mulesoft/raml-for-jax-rs/issues/81所述。但即使进行了必要的更改后,我仍然会遇到同样的错误。我再次进入Mule EE 3.6.2。 下面是json架构。任何帮助将不胜感激。
此致 哈
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://example.com",
"type": "object",
"properties": {
"record": {
"id": "http://example.com/record",
"type": "array",
"items": {
"id": "http://example.com/record/0",
"type": "object",
"properties": {
"Account": {
"id": "http://example.com/record/0/Account",
"type": "string"
},
"DeptID": {
"id": "http://example.com/record/0/DeptID",
"type": "string"
},
"ProjectID": {
"id": "http://example.com/record/0/ProjectID",
"type": "string"
},
"ProjectDescription": {
"id": "http://example.com/record/0/ProjectDescription",
"type": "string"
},
"Amount": {
"id": "http://example.com/record/0/Amount",
"type": "number"
},
"CheckNo": {
"id": "http://example.com/record/0/CheckNo",
"type": "integer"
},
"Reference": {
"id": "http://example.com/record/0/Reference",
"type": "string"
},
"BudgetRef": {
"id": "http://example.com/record/0/BudgetRef",
"type": "string"
},
"Description": {
"id": "http://example.com/record/0/Description",
"type": "string"
},
"Oprid": {
"id": "http://example.com/record/0/Oprid",
"type": "string"
},
"Date": {
"id": "http://example.com/record/0/Date",
"type": "string"
}
},
"required": [
"Account",
"DeptID",
"ProjectID",
"ProjectDescription",
"Amount",
"CheckNo",
"Reference",
"BudgetRef",
"Description",
"Oprid",
"Date"
]
},
"required": [
"0"
]
}
},
"required": [
"record"
]
}
错误日志如下
ERROR 2015-09-23 14:04:57,797 [main] org.mule.module.launcher.application.DefaultMuleApplication: null
org.mule.module.apikit.exception.ApikitRuntimeException: Invalid API descriptor -- errors found: 1
invalid JSON schema (schemas/ip_revenue_management_input.json):
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/Account"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/Amount"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/BudgetRef"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/CheckNo"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/Date"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/DeptID"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/Description"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/Oprid"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/ProjectDescription"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/ProjectID"}
keyword: "required"
found: "boolean"
expected: ["array"]
error: value has incorrect type (found boolean, expected one of [array])
level: "error"
domain: "syntax"
schema: {"loadingURI":"#","pointer":"/properties/record/items/properties/Reference"}
keyword: "required"
found: "boolean"
expected: ["array"]
-- file: schemas/ip_revenue_management_input.json
at org.mule.module.apikit.AbstractConfiguration.validateRaml(AbstractConfiguration.java:199) ~[?:?]
at org.mule.module.apikit.AbstractConfiguration.initialise(AbstractConfiguration.java:97) ~[?:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_45]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_45]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_45]
at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_45]
答案 0 :(得分:4)
尝试删除:
,
"required": [
"record"
]
所以:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://example.com",
"type": "object",
"properties": {
"record": {
"id": "http://example.com/record",
"type": "array",
"items": {
"id": "http://example.com/record/0",
"type": "object",
"properties": {
"Account": {
"id": "http://example.com/record/0/Account",
"type": "string"
},
"DeptID": {
"id": "http://example.com/record/0/DeptID",
"type": "string"
},
"ProjectID": {
"id": "http://example.com/record/0/ProjectID",
"type": "string"
},
"ProjectDescription": {
"id": "http://example.com/record/0/ProjectDescription",
"type": "string"
},
"Amount": {
"id": "http://example.com/record/0/Amount",
"type": "number"
},
"CheckNo": {
"id": "http://example.com/record/0/CheckNo",
"type": "integer"
},
"Reference": {
"id": "http://example.com/record/0/Reference",
"type": "string"
},
"BudgetRef": {
"id": "http://example.com/record/0/BudgetRef",
"type": "string"
},
"Description": {
"id": "http://example.com/record/0/Description",
"type": "string"
},
"Oprid": {
"id": "http://example.com/record/0/Oprid",
"type": "string"
},
"Date": {
"id": "http://example.com/record/0/Date",
"type": "string"
}
},
"required": [
"Account",
"DeptID",
"ProjectID",
"ProjectDescription",
"Amount",
"CheckNo",
"Reference",
"BudgetRef",
"Description",
"Oprid",
"Date"
]
}, "required": [
"items"
]
}
}
}
答案 1 :(得分:0)
对于数组数组,您不能使用具有必需字段条件的JSON,而是只能将其用于记录数组
所以,请删除 , "必需":[ "记录" ]
最后
答案 2 :(得分:0)
我不确定这个解决方案,我遇到了同样的问题,我更改了属性的 id ,如下所示,它对我有用:
"ZIP": {
"id": "/properties/ZIP",
"type": "string"
}
答案 3 :(得分:0)
我也遇到了相同的错误消息,但是使用在线模式生成器生成了不同的模式文件。
对我而言,问题是生成的架构版本错误(请参阅github issue让我走上正轨)。所以我不得不改变:
"$schema": "http://json-schema.org/draft-07/schema#",
为:
"$schema": "http://json-schema.org/draft-04/schema#",
似乎不支持更高版本,默认返回draft-03,它会生成一条关于required和boolean的消息(至少对我来说)
我知道这并不能解决原来的海报问题,但我希望这可以帮助那些偶然发现这个问题的人。
答案 4 :(得分:-2)
删除" required":[ "记录" ] 我已经测试并在移除后工作正常。