3

我正在使用 Mule EE 3.5.2 并迁移到 3.6.2。我有一个带有 json 模式的 RAML 项目,该项目抛出错误 mule invalid 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]
4

5 回答 5

5

尝试删除:

,
  "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"
      ]
    }
  }
}
于 2015-09-23T18:26:43.443 回答
0

我不确定这个解决方案,我遇到了同样的问题,我更改了属性id ,如下所示,它对我有用: "ZIP": { "id": "/properties/ZIP",
"type": "string" }

于 2017-09-13T17:41:31.407 回答
0

我也遇到了相同的错误消息,但使用在线模式生成器生成了不同的模式文件。

对我来说,问题原来是生成的模式是错误的版本(请参阅让我走上正轨的github 问题)。所以我不得不改变:

"$schema": "http://json-schema.org/draft-07/schema#",

至:

"$schema": "http://json-schema.org/draft-04/schema#",

似乎不支持更高版本,默认返回 Draft-03,它会产生一条关于 required 和 boolean 的消息(至少对我来说)

我知道这并不能解决最初的海报问题,但我希望这可以帮助其他偶然发现这个问题的人。

于 2018-05-11T07:11:52.570 回答
0

您不能将 JSON 与数组数组的必需字段条件一起使用,而 required 只能用于记录数组

所以,请删除 , "required": [ "record" ]

在最后

于 2015-09-24T12:31:23.990 回答
-2

删除“必需”:[“记录”]我已经测试并在删除后工作正常。

于 2015-09-24T15:21:16.310 回答