{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BulkOffer",
"title": "BulkOffer",
"type": "object",
"properties": {
"requests": {
"type": "array",
"description": "This container is used to pass in an array of offers to publish. Up to 25 offers can be published with one bulkPublishOffer method.",
"items": {
"$ref": "#/components/schemas/OfferKeyWithId"
}
}
},
"description": "This type is used by the base request of the bulkPublishOffer method, which is used to publish up to 25 different offers."
}