{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MarketingPrice",
"title": "MarketingPrice",
"type": "object",
"properties": {
"discountAmount": {
"description": "This container returns the monetary amount of the seller discount.",
"$ref": "#/components/schemas/ConvertedAmount"
},
"discountPercentage": {
"type": "string",
"description": "This field expresses the percentage of the seller discount based on the value in the originalPrice container."
},
"originalPrice": {
"description": "This container returns the monetary amount of the item without the discount.",
"$ref": "#/components/schemas/ConvertedAmount"
},
"priceTreatment": {
"type": "string",
"description": "Indicates the pricing treatment (discount) that was applied to the price of the item.
Note: The pricing treatment affects the way and where the discounted price can be displayed. For implementation help, refer to eBay API documentation"
}
},
"description": "The type that defines the fields that describe a seller discount."
}