ShippingFeesModifiedFailedv0.0.1
ShippingFeesModifiedFailed
This event is triggered when a shipping fees modification has been started, but the operation failed.
ShippingFeesModifiedFailed Schema (json)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "ShippingFeesModifiedFailed",
"required": ["detail-type", "resources", "detail", "id", "source", "time", "region", "version", "account"],
"type": "object",
"x-amazon-events-detail-type": "ShippingFeesModifiedFailed",
"x-amazon-events-source": "brink.external.v1",
"properties": {
"account": {
"type": "string"
},
"detail": {
"$ref": "#/definitions/Detail"
},
"detail-type": {
"type": "string"
},
"id": {
"type": "string"
},
"region": {
"type": "string"
},
"resources": {
"items": {
"type": "string"
},
"type": "array"
},
"source": {
"type": "string"
},
"time": {
"format": "date-time",
"type": "string"
},
"version": {
"type": "string"
}
},
"definitions": {
"Detail": {
"properties": {
"data": {
"$ref": "#/definitions/Data"
},
"metadata": {
"$ref": "#/definitions/Metadata"
}
},
"required": ["metadata", "data"],
"type": "object"
},
"Metadata": {
"type": "object",
"required": ["awsRequestId"],
"properties": {
"awsRequestId": {
"type": "string"
}
}
},
"Data": {
"$ref": "#/definitions/ShippingFeesModified"
},
"ShippingFeesModified": {
"type": "object",
"required": [
"id",
"orderId",
"orderReference",
"paymentProvider",
"shippingFees",
"created",
"updated",
"completed",
"restarts",
"revision"
],
"properties": {
"id": {
"type": "string",
"description": "The shipping fees modification id"
},
"orderId": {
"type": "string",
"description": "The order id"
},
"orderReference": {
"type": "string",
"description": "The order short reference"
},
"paymentProvider": {
"$ref": "#/definitions/ProviderStatus"
},
"shippingProvider": {
"$ref": "#/definitions/Provider"
},
"giftCardProvider": {
"$ref": "#/definitions/Provider"
},
"giftCardProductProvider": {
"$ref": "#/definitions/Provider"
},
"voucherProvider": {
"$ref": "#/definitions/Provider"
},
"promotionProvider": {
"$ref": "#/definitions/Provider"
},
"bonusProvider": {
"$ref": "#/definitions/Provider"
},
"shippingFees": {
"type": "array",
"items": {
"$ref": "#/definitions/ShippingFeeModification"
}
},
"reason": {
"$ref": "#/definitions/Reason"
},
"created": {
"type": "string",
"format": "date-time",
"description": "Created date for the shipping fees modification"
},
"updated": {
"type": "string",
"format": "date-time",
"description": "Updated date for the shipping fees modification"
},
"started": {
"type": "string",
"format": "date-time",
"description": "Started date for the shipping fees modification"
},
"completed": {
"type": "string",
"format": "date-time",
"description": "Completed date for the shipping fees modification"
},
"failed": {
"type": "string",
"format": "date-time",
"description": "Failed date for the shipping fees modification"
},
"restarted": {
"type": "string",
"format": "date-time",
"description": "Restarted date for the shipping fees modification"
},
"restarts": {
"description": "The number of restarts",
"type": "integer"
},
"revision": {
"description": "The revision number of the shipping fees modification",
"type": "integer"
}
}
},
"ProviderStatus": {
"type": "object",
"required": ["providerId", "providerName", "status"],
"properties": {
"providerId": {
"type": "string",
"description": "The id for the provider"
},
"providerName": {
"type": "string",
"description": "The name of the provider"
},
"status": {
"$ref": "#/definitions/ProviderStatusLog"
}
}
},
"ProviderStatusLog": {
"type": "object",
"required": ["current", "history"],
"properties": {
"current": {
"type": "string",
"description": "The latest status for the provider"
},
"history": {
"type": "array",
"items": {
"$ref": "#/definitions/ProviderStatusLogEntry"
}
}
}
},
"ProviderStatusLogEntry": {
"type": "object",
"required": ["status", "timestamp", "type"],
"properties": {
"message": {
"type": "string",
"description": "Optional message for the status"
},
"errorMessage": {
"type": "string",
"description": "Optional error message from the provider"
},
"status": {
"type": "string",
"description": "The actual status"
},
"timestamp": {
"type": "string",
"format": "date-time",
"description": "Timestamp for the status"
},
"type": {
"type": "string",
"description": "Status type"
}
}
},
"Provider": {
"type": "object",
"required": ["providerId", "providerName"],
"properties": {
"providerId": {
"type": "string",
"description": "The id of the provider"
},
"providerName": {
"type": "string",
"description": "The name of the provider"
}
}
},
"Reason": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Optional code for the reason, useful for BI tracking"
},
"cause": {
"type": "string",
"description": "Optional human readable cause for the reason"
}
}
},
"ModificationType": {
"title": "ModificationType",
"type": "string",
"enum": ["UPDATE"]
},
"ShippingFeeModification": {
"type": "object",
"required": ["modificationType", "data"],
"properties": {
"modificationType": {
"$ref": "#/definitions/ModificationType"
},
"data": {
"oneOf": [
{
"$ref": "#/definitions/ShippingFeeModificationUpdate"
}
]
}
}
},
"ShippingFeeModificationUpdate": {
"type": "object",
"required": ["id"],
"properties": {
"id": {
"type": "string",
"description": "The id for the updated shipping fee"
},
"taxGroupId": {
"type": "string",
"description": "Updated taxGroupId for the shipping fee"
},
"price": {
"$ref": "#/definitions/ShippingFeeModificationUpdatePrice"
}
}
},
"ShippingFeeModificationUpdatePrice": {
"type": "object",
"required": [
"basePriceAmount",
"salePriceAmount",
"discountAmount",
"taxPercentage",
"taxPercentageDecimals",
"taxAmount"
],
"properties": {
"basePriceAmount": {
"type": "integer",
"description": "Updated base price of the created shipping fee"
},
"salePriceAmount": {
"type": "integer",
"description": "Updated sale price of the created shipping fee"
},
"discountAmount": {
"type": "integer",
"description": "Updated discount amount of the shipping fee"
},
"taxPercentage": {
"type": "integer",
"description": "Updated tax percentage of the shipping fee"
},
"taxPercentageDecimals": {
"type": "integer",
"description": "Updated tax percentage decimals of the shipping fee"
},
"taxAmount": {
"type": "integer",
"description": "Updated tax amount of the shipping fee"
}
}
}
}
}
Last updated on 2025/5/8