{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/deliverect/refs/heads/main/json-schema/channel-api-post-channelname-courierupdate-channellinkid-schema.json", "title": "PostChannelnameCourierupdateChannellinkid", "description": "Deliverect Update Courier Status", "type": "object", "properties": { "channelOrderId": { "type": "string", "example": "609a1b2c3d4e5f6a7b8c9d0e" }, "courierUpdate": { "type": "object", "properties": { "status": { "type": "integer", "example": 20 }, "arrivalTime": { "type": "string", "format": "date-time", "example": "2026-03-15T14:30:00Z" }, "deliveryTime": { "type": "string", "format": "date-time", "example": "2026-03-15T14:30:00Z" }, "courier": { "type": "object", "properties": { "firstName": { "type": "string", "example": "Deliverect's Pizza Place" }, "lastName": { "type": "string", "example": "Deliverect's Pizza Place" }, "phoneNumber": { "type": "string", "example": "+15555550123" } } } }, "required": [ "status" ] } }, "required": [ "channelOrderId", "courierUpdate" ] }