{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LineItemInput",
"title": "LineItemInput",
"type": "object",
"properties": {
"itemId": {
"type": "string",
"description": "The unique eBay-assigned identifier of an item. This ID is returned by the Browse and Feed API methods. The ID must be in RESTful item ID format.
For example: v1|2**********6|5**********4 or v1|1**********9|0.
For more information about item IDs for RESTful APIs, see Legacy API compatibility.
Each itemId will become a single line item.
Maximum: 10 per session"
},
"quantity": {
"type": "integer",
"description": "The quantity ordered in this line item.",
"format": "int32"
}
},
"description": "A type that defines the fields for a line item."
}