You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but this doesn't match my schema below, image doesn't contain "type": "object" :
"PreviewProduct": {
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"handle": {
"type": "string",
"title": "Handle"
},
"title": {
"type": "string",
"title": "Title"
},
"productType": {
"type": "string",
"title": "Producttype"
},
"image": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Image"
},
"size": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Size"
},
"color": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Color"
}
},
"type": "object",
"required": [
"id",
"handle",
"title",
"productType"
],
"title": "PreviewProduct",
"description": "NOTE: This class is auto generated by OpenAPI Generator ([https://openapi-generator.tech).\n\nDo](https://openapi-generator.tech)./n/nDo) not edit the class manually.\n\nPreviewProduct - a model defined in OpenAPI\n\n id: The id of this PreviewProduct.\n handle: The handle of this PreviewProduct.\n title: The title of this PreviewProduct.\n product_type: The product_type of this PreviewProduct.\n image: The image of this PreviewProduct [Optional].\n size: The size of this PreviewProduct [Optional].\n color: The color of this PreviewProduct [Optional]."
}
The text was updated successfully, but these errors were encountered:
Using Json31.pretty() I'm getting back properties with anyOf containing
"type": "object"
but this doesn't match my schema below, image doesn't contain
"type": "object"
:The text was updated successfully, but these errors were encountered: