Update rate limit headers and ShipmentDetail properties in shipmentInvoiceV0.json

This commit is contained in:
Chris Shell 2021-07-06 19:19:54 -04:00
parent b7b912353e
commit c2c78aefe0
1 changed files with 47 additions and 0 deletions

View File

@ -99,6 +99,17 @@
} }
] ]
}, },
"MarketplaceTaxInfo": {
"CompanyLegalName": "Seller Legal Company Name",
"TaxingRegion": "SP",
"TaxClassifications": [
{
"Name": "CNPJ",
"Value": "15436940000103"
}
]
},
"SellerDisplayName": "Seller Display Name in the marketplace",
"ShipmentItems": [ "ShipmentItems": [
{ {
"ASIN": "BKUO9348543", "ASIN": "BKUO9348543",
@ -207,6 +218,10 @@
"$ref": "#/definitions/GetShipmentDetailsResponse" "$ref": "#/definitions/GetShipmentDetailsResponse"
}, },
"headers": { "headers": {
"x-amzn-RateLimit-Limit": {
"type": "string",
"description": "Your rate limit (requests per second) for this operation."
},
"x-amzn-RequestId": { "x-amzn-RequestId": {
"description": "Unique request reference identifier.", "description": "Unique request reference identifier.",
"type": "string" "type": "string"
@ -415,6 +430,10 @@
"$ref": "#/definitions/SubmitInvoiceResponse" "$ref": "#/definitions/SubmitInvoiceResponse"
}, },
"headers": { "headers": {
"x-amzn-RateLimit-Limit": {
"type": "string",
"description": "Your rate limit (requests per second) for this operation."
},
"x-amzn-RequestId": { "x-amzn-RequestId": {
"description": "Unique request reference identifier.", "description": "Unique request reference identifier.",
"type": "string" "type": "string"
@ -611,6 +630,10 @@
"$ref": "#/definitions/GetInvoiceStatusResponse" "$ref": "#/definitions/GetInvoiceStatusResponse"
}, },
"headers": { "headers": {
"x-amzn-RateLimit-Limit": {
"type": "string",
"description": "Your rate limit (requests per second) for this operation."
},
"x-amzn-RequestId": { "x-amzn-RequestId": {
"description": "Unique request reference identifier.", "description": "Unique request reference identifier.",
"type": "string" "type": "string"
@ -746,6 +769,13 @@
"BuyerTaxInfo": { "BuyerTaxInfo": {
"$ref": "#/definitions/BuyerTaxInfo" "$ref": "#/definitions/BuyerTaxInfo"
}, },
"MarketplaceTaxInfo": {
"$ref": "#/definitions/MarketplaceTaxInfo"
},
"SellerDisplayName": {
"description": "The sellers friendly name registered in the marketplace.",
"type": "string"
},
"ShipmentItems": { "ShipmentItems": {
"$ref": "#/definitions/ShipmentItems" "$ref": "#/definitions/ShipmentItems"
} }
@ -846,6 +876,23 @@
} }
} }
}, },
"MarketplaceTaxInfo": {
"description": "Tax information about the marketplace.",
"type": "object",
"properties": {
"CompanyLegalName": {
"description": "The legal name of the company.",
"type": "string"
},
"TaxingRegion": {
"description": "The country or region imposing the tax.",
"type": "string"
},
"TaxClassifications": {
"$ref": "#/definitions/TaxClassificationList"
}
}
},
"TaxClassificationList": { "TaxClassificationList": {
"description": "The list of tax classifications.", "description": "The list of tax classifications.",
"type": "array", "type": "array",