File tree Expand file tree Collapse file tree
apify-api/openapi/components/schemas/key-value-stores Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ required:
44type : object
55properties :
66 data :
7- $ref : ./ListOfKeysResponse .yaml
7+ $ref : ./ListOfKeys .yaml
Original file line number Diff line number Diff line change 1+ title : ListOfKeys
2+ type : object
3+ required :
4+ - items
5+ - count
6+ - limit
7+ - isTruncated
8+ properties :
9+ items :
10+ type : array
11+ items :
12+ type : object
13+ title : Item
14+ required :
15+ - key
16+ - size
17+ - recordPublicUrl
18+ properties :
19+ key :
20+ type : string
21+ example : second-key
22+ size :
23+ type : number
24+ example : 36
25+ recordPublicUrl :
26+ type : string
27+ description : " A public link to access this record directly."
28+ example : ' https://api.apify.com/v2/key-value-stores/WkzbQMuFYuamGv3YF/records/some-key?signature=abc123'
29+ description : ' '
30+ count :
31+ type : number
32+ example : 2
33+ limit :
34+ type : number
35+ example : 2
36+ exclusiveStartKey :
37+ type : string
38+ example : some-key
39+ isTruncated :
40+ type : boolean
41+ example : true
42+ nextExclusiveStartKey :
43+ type : string
44+ example : third-key
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments