我收到错误消息:
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"
}
}
}
}
}
}
}
}
}