We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d1a23 commit 7ea39eeCopy full SHA for 7ea39ee
apify-api/openapi/components/schemas/datasets/Dataset.yaml
@@ -47,6 +47,11 @@ properties:
47
type: string
48
description: ''
49
nullable: true
50
+ schema:
51
+ type: object
52
+ nullable: true
53
consoleUrl:
54
55
example: 'https://console.apify.com/storage/datasets/27TmTznX9YPeAYhkC'
56
+ stats:
57
+ $ref: ./DatasetStats.yaml
apify-api/openapi/components/schemas/datasets/DatasetStats.yaml
@@ -0,0 +1,16 @@
1
+title: DatasetStats
2
+required:
3
+ - readCount
4
+ - writeCount
5
+ - storageBytes
6
+type: object
7
+properties:
8
+ readCount:
9
+ type: number
10
+ example: 22
11
+ writeCount:
12
13
+ example: 3
14
+ storageBytes:
15
16
+ example: 783
0 commit comments