From 7bf23edbf02b090f3924d7d8df4b2b70eed3aa44 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 29 Jan 2025 20:30:25 -0800 Subject: [PATCH] Correct the body for updating tags of a shipment --- docs/openapi.json | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/docs/openapi.json b/docs/openapi.json index 52f20f78..5bc880fc 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -1108,24 +1108,21 @@ "example": [ "REFNUMBER10" ], - "description": "Shipment ref numbers.", + "description": "Shipment reference numbers. This should be unique to the shipment.", "items": { "type": "string" } }, - "shipment_tags": { + "tags": { "type": "array", - "x-stoplight": { - "id": "02itol38fmg55" - }, + "example": [ + "tag1", + "tag2" + ], "uniqueItems": true, - "description": "Tags related to a shipment", + "description": "Tags related to a shipment. This will replace any existing tags on the shipment.", "items": { - "x-stoplight": { - "id": "64x90wvr9d6nd" - }, - "type": "string", - "example": "tag1, tag2" + "type": "string" } } }