{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SellingLimit", "title": "SellingLimit", "type": "object", "properties": { "amount": { "description": "This container shows the monthly cap for total sales amount allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total sales amount.", "$ref": "#/components/schemas/Amount" }, "quantity": { "type": "integer", "description": "This field shows the monthly cap for total quantity sold allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total quantity sold.", "format": "int32" } }, "description": "Type used by the sellingLimit container, a container that lists the monthly cap for the quantity of items sold and total sales amount allowed for the seller's account." }