json icon

Shipment Delivered

v1.0.0events

Published by the carrier when a shipment has been delivered to the customer.

1{
2  "$schema": "http://json-schema.org/draft-07/schema#",
3  "title": "ShipmentDelivered",
4  "description": "Published when a shipment has been delivered to the customer",
5  "type": "object",
6  "properties": {
7    "shipmentId": { "type": "string", "format": "uuid" },
8    "orderId": { "type": "string", "format": "uuid" },
9    "deliveredAt": { "type": "string", "format": "date-time" },
10    "signedBy": { "type": "string", "description": "Name of the person who accepted delivery, if captured" }
11  },
12  "required": ["shipmentId", "orderId", "deliveredAt"]
13}
14

Details

Format
JSON Schema
Resource
events
Filename
schema.json

Versions