From 683050cf01314f538514c7bde11654e997b3f345 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Mon, 13 Apr 2026 14:10:09 +0200 Subject: [PATCH 1/2] Remove uri format where not enforced by API --- .../openapi/components/schemas/request-queues/RequestBase.yaml | 1 - .../components/schemas/request-queues/RequestUserData.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/apify-api/openapi/components/schemas/request-queues/RequestBase.yaml b/apify-api/openapi/components/schemas/request-queues/RequestBase.yaml index 1a830adbab..0e51f6d66e 100644 --- a/apify-api/openapi/components/schemas/request-queues/RequestBase.yaml +++ b/apify-api/openapi/components/schemas/request-queues/RequestBase.yaml @@ -11,7 +11,6 @@ properties: $ref: ./SharedProperties.yaml#/RetryCount loadedUrl: type: [string, "null"] - format: uri description: The final URL that was loaded, after redirects (if any). examples: [https://apify.com/jobs] payload: diff --git a/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml b/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml index aa4254ae04..e22c333f0e 100644 --- a/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml +++ b/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml @@ -9,6 +9,5 @@ properties: examples: [DETAIL] image: type: [string, "null"] - format: uri description: Optional image URL associated with the request. examples: [https://picserver1.eu] From 8e6f243d259d16a66826dd9b4f75ab7fd28aeaad Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Mon, 13 Apr 2026 16:36:21 +0200 Subject: [PATCH 2/2] Remove unnecesarry fields from `RequestUserData` --- .../schemas/request-queues/RequestUserData.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml b/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml index e22c333f0e..e302efd078 100644 --- a/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml +++ b/apify-api/openapi/components/schemas/request-queues/RequestUserData.yaml @@ -2,12 +2,6 @@ title: RequestUserData description: Custom user data attached to the request. Can contain arbitrary fields. type: object additionalProperties: true -properties: - label: - type: [string, "null"] - description: Optional label for categorizing the request. - examples: [DETAIL] - image: - type: [string, "null"] - description: Optional image URL associated with the request. - examples: [https://picserver1.eu] +example: + label: DETAIL + customField: custom-value