eBay · Schema
Event
The result set for the event search.
AuctionsCommerceProductsMarketplaceFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| applicableCoupons | array | A list of coupons associated with the event. |
| description | string | The event description. |
| endDate | string | The end date for the event. |
| eventAffiliateWebUrl | string | The URL of the View Event page for the event, which includes the affiliate tracking ID. |
| eventId | string | The unique identifier for the event. |
| eventWebUrl | string | The web URL for the event. |
| images | array | The images for the event. |
| startDate | string | The start date for the event. |
| terms | object | The terms associated with the event. |
| title | string | The title of the event. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Event",
"title": "Event",
"type": "object",
"properties": {
"applicableCoupons": {
"type": "array",
"description": "A list of coupons associated with the event.",
"items": {
"$ref": "#/components/schemas/Coupon"
}
},
"description": {
"type": "string",
"description": "The event description."
},
"endDate": {
"type": "string",
"description": "The end date for the event."
},
"eventAffiliateWebUrl": {
"type": "string",
"description": "The URL of the View Event page for the event, which includes the affiliate tracking ID."
},
"eventId": {
"type": "string",
"description": "The unique identifier for the event."
},
"eventWebUrl": {
"type": "string",
"description": "The web URL for the event."
},
"images": {
"type": "array",
"description": "The images for the event.",
"items": {
"$ref": "#/components/schemas/Image"
}
},
"startDate": {
"type": "string",
"description": "The start date for the event."
},
"terms": {
"description": "The terms associated with the event.",
"$ref": "#/components/schemas/Terms"
},
"title": {
"type": "string",
"description": "The title of the event."
}
},
"description": "The result set for the event search."
}