-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathRequestBase.yaml
More file actions
41 lines (41 loc) · 1.23 KB
/
RequestBase.yaml
File metadata and controls
41 lines (41 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
title: RequestBase
type: object
properties:
uniqueKey:
$ref: ./SharedProperties.yaml#/UniqueKey
url:
$ref: ./SharedProperties.yaml#/RequestUrl
method:
$ref: ./SharedProperties.yaml#/RequestMethod
retryCount:
$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:
type: [string, object, "null"]
description: The request payload, typically used with POST or PUT requests.
examples: [null]
headers:
type: [object, "null"]
description: HTTP headers sent with the request.
examples: [null]
userData:
$ref: ./RequestUserData.yaml
noRetry:
type: [boolean, "null"]
description: Indicates whether the request should not be retried if processing fails.
examples: [false]
errorMessages:
type: [array, "null"]
description: Error messages recorded from failed processing attempts.
items:
type: string
examples: [null]
handledAt:
type: [string, "null"]
format: date-time
description: The timestamp when the request was marked as handled, if applicable.
examples: ["2019-06-16T10:23:31.607Z"]