{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WaitingTime",
"title": "WaitingTime",
"type": "object",
"description": "Object containing the days after order cancelation by a seller.",
"required": [
"waitingTime"
],
"properties": {
"waitingTime": {
"type": "integer",
"description": "Number of days after order cancelation by a seller, during which another seller may be assigned to fulfill the order."
}
}
}