I'm trying to realize a connector for easyBill REST API
Now the problem starts for Definitions like Customers (see code below).
I already validated on swagger.io
But if I use it for custom connector schema validation fails resolving properly with objects/collections like these.
Is this kind of object not supported?
"definitions": {
"List": {...},
"Customer": {...},
"Customers": {
"type": "object",
"allOf": [
{
"$ref": "#/definitions/List"
},
{
"properties": {
"items": {
"type": "array",
"items": {
"$ref": "#/definitions/Customer"
}
}
}
}
]
},