Skip to content

Commit 5c57d9d

Browse files
committed
Merge branch 'master' into feat/update-make-com-docs
# Conflicts: # package-lock.json
2 parents 126f62f + 3782e6b commit 5c57d9d

File tree

93 files changed

+23112
-3301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+23112
-3301
lines changed

.github/workflows/lychee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Run Lychee Link Checker
3838
id: lychee
39-
uses: lycheeverse/lychee-action@v2.1.0
39+
uses: lycheeverse/lychee-action@v2.2.0
4040
env:
4141
GITHUB_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
4242
with:
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
title: DatasetFieldStatistics
2+
type: object
3+
properties:
4+
min:
5+
type: number
6+
description: 'Minimum value of the field. For numbers, this is calculated directly. For strings, this is the length of the shortest string. For arrays, this is the length of the shortest array. For objects, this is the number of keys in the smallest object.'
7+
nullable: true
8+
max:
9+
type: number
10+
description: 'Maximum value of the field. For numbers, this is calculated directly. For strings, this is the length of the longest string. For arrays, this is the length of the longest array. For objects, this is the number of keys in the largest object.'
11+
nullable: true
12+
nullCount:
13+
type: number
14+
description: 'How many items in the dataset have a null value for this field.'
15+
nullable: true
16+
emptyCount:
17+
type: number
18+
description: 'How many items in the dataset are `undefined`, meaning that for example empty string is not considered empty.'
19+
nullable: true
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
title: GetDatasetStatisticsResponse
2+
required:
3+
- data
4+
type: object
5+
properties:
6+
data:
7+
type: object
8+
properties:
9+
fieldStatistics:
10+
type: object
11+
nullable: true
12+
additionalProperties:
13+
$ref: ./DatasetFieldStatistics.yaml
14+
description: 'When you configure the dataset [fields schema](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema/validation), we measure the statistics such as `min`, `max`, `nullCount` and `emptyCount` for each field.
15+
This property provides statistics for each field from dataset fields schema.
16+
<br/></br>See dataset field statistics [documentation](https://docs.apify.com/platform/actors/development/actor-definition/dataset-schema/validation#dataset-field-statistics) for more information.'

0 commit comments

Comments
 (0)