0

エラーが発生しています:

Cannot generate mapping template because model schema is missing a 'type' or '$ref' property` when trying to define an integration response

"type"定義しました。

私のモデルスキーマは次のとおりです。

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "title": "Configuration",
  "properties": {
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "ordinal": {
            "type": "integer"
          },
          "rules": {
            "type": "array",
            "items": {
              "properties": {
                "ordinal": {
                  "type": "integer"
                },
                "rId": {
                  "type": "integer"
                },
                "rMId": {
                  "type": "integer"
                },
                "rValue": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  }
}
4

2 に答える 2