{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShippingData1",
"title": "ShippingData1",
"required": [
"logisticsInfo"
],
"type": "object",
"properties": {
"logisticsInfo": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array with logistics information about the order been replaced. If not sent in the original request, it will be an empty array in the response."
}
},
"example": {
"logisticsInfo": []
}
}