Skip to content

Commit eed74b6

Browse files
committed
Fix double nesting in get list of keys
1 parent 7d50113 commit eed74b6

3 files changed

Lines changed: 45 additions & 50 deletions

File tree

apify-api/openapi/components/schemas/key-value-stores/GetListOfKeysResponse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ required:
44
type: object
55
properties:
66
data:
7-
$ref: ./ListOfKeysResponse.yaml
7+
$ref: ./ListOfKeys.yaml
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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

apify-api/openapi/components/schemas/key-value-stores/ListOfKeysResponse.yaml

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)