From 3aa380bb3faa69df3d1c9bc3296c9e6fd403c61f Mon Sep 17 00:00:00 2001 From: Mladen Jablanovic Date: Mon, 17 Feb 2025 10:25:42 +0100 Subject: [PATCH] feat(API): document tags attribute of an upload #STRINGS-1221 --- doc/compiled.json | 10 +++++++++- schemas/upload.yaml | 8 ++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/doc/compiled.json b/doc/compiled.json index 77e715a3f..83e7f7da8 100644 --- a/doc/compiled.json +++ b/doc/compiled.json @@ -1758,7 +1758,15 @@ "type": "string" }, "tag": { - "type": "string" + "type": "string", + "description": "Unique tag of the upload\n" + }, + "tags": { + "type": "array", + "items": { + "type": "string" + }, + "description": "List of tags that were assigned to the uploaded keys\n" }, "url": { "type": "string", diff --git a/schemas/upload.yaml b/schemas/upload.yaml index 515edd141..ffb1609b3 100644 --- a/schemas/upload.yaml +++ b/schemas/upload.yaml @@ -13,6 +13,14 @@ upload: type: string tag: type: string + description: | + Unique tag of the upload + tags: + type: array + items: + type: string + description: | + List of tags that were assigned to the uploaded keys url: type: string description: |