From 4cde60ce0fe6e174e1386e9cbfeb46f3f5e796a9 Mon Sep 17 00:00:00 2001 From: Sam Mesterton-Gibbons Date: Fri, 17 Apr 2026 15:57:14 +0100 Subject: [PATCH] Remove text about 404 if label not set 404 would indicate the resource was not found, but in this case it was found, it just had no value. Aligns with the other requests (e.g. `GET /flows/{flowID}/description` sem-ver: bugfix --- api/TimeAddressableMediaStore.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/TimeAddressableMediaStore.yaml b/api/TimeAddressableMediaStore.yaml index b9e03fb9..e5fd5788 100644 --- a/api/TimeAddressableMediaStore.yaml +++ b/api/TimeAddressableMediaStore.yaml @@ -747,7 +747,7 @@ paths: "200": $ref: '#/components/responses/trait_resource_info_head_200' "404": - description: The requested Source does not exist, or does not have a label set. + description: The requested Source does not exist. get: summary: Source Label description: Returns the Source label property. This should be a very short, human-readable label that may be displayed in listings of Sources. @@ -764,7 +764,7 @@ paths: schema: type: string "404": - description: The requested Source does not exist, or does not have a label set. + description: The requested Source does not exist. put: summary: Create or Update Source Label description: Create or update the label property. This should be a very short, human-readable label that may be displayed in listings of Sources. @@ -1371,7 +1371,7 @@ paths: "200": $ref: '#/components/responses/trait_resource_info_head_200' "404": - description: The requested Flow does not exist, or does not have a label set. + description: The requested Flow does not exist. get: summary: Flow Label description: Returns the Flow label property. This should be a very short, human-readable label that may be displayed in listings of Flows. @@ -1388,7 +1388,7 @@ paths: schema: type: string "404": - description: The requested Flow does not exist, or does not have a label set. + description: The requested Flow does not exist. put: summary: Create or Update Flow Label description: Create or update the label property. This should be a very short, human-readable label that may be displayed in listings of Flows.