Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions apify-api/openapi/components/schemas/actor-runs/Run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ required:
- defaultKeyValueStoreId
- defaultDatasetId
- defaultRequestQueueId
- generalAccess
type: object
properties:
id:
Expand Down Expand Up @@ -84,7 +83,9 @@ properties:
description: Exit code of the Actor run process.
generalAccess:
description: General access level for the Actor run.
$ref: ../common/GeneralAccess.yaml
anyOf:
- $ref: ../common/GeneralAccess.yaml
- type: "null"
defaultKeyValueStoreId:
type: string
examples: [eJNzqsbPiopwJcgGQ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ properties:
input:
anyOf:
- $ref: ./TaskInput.yaml
- type: array
items:
$ref: ./TaskInput.yaml
- type: "null"
title:
type: [string, "null"]
Expand Down
3 changes: 3 additions & 0 deletions apify-api/openapi/components/schemas/actor-tasks/Task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ properties:
input:
anyOf:
- $ref: ./TaskInput.yaml
- type: array
items:
$ref: ./TaskInput.yaml
- type: "null"
title:
type: [string, "null"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ properties:
input:
anyOf:
- $ref: ./TaskInput.yaml
- type: array
items:
$ref: ./TaskInput.yaml
- type: "null"
title:
type: [string, "null"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ properties:
type: string
description: The path to the directory used as the Docker context when building the Actor.
readme:
type: string
type: [string, "null"]
description: The path to the README file for the Actor.
input:
type: object
type: [object, "null"]
description: The input schema object, the full specification can be found in [Apify docs](https://docs.apify.com/platform/actors/development/actor-definition/input-schema)
changelog:
type: string
type: [string, "null"]
description: The path to the CHANGELOG file displayed in the Actor's information tab.
storages:
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ properties:
type: [string, "null"]
description: A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the dataset.
generalAccess:
$ref: ../common/GeneralAccess.yaml
anyOf:
- $ref: ../common/GeneralAccess.yaml
- type: "null"
stats:
$ref: ./DatasetStats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ properties:
type: string
examples: [janedoe]
generalAccess:
$ref: ../common/GeneralAccess.yaml
anyOf:
- $ref: ../common/GeneralAccess.yaml
- type: "null"
stats:
$ref: ./DatasetStats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ properties:
type: [string, "null"]
description: A secret key for generating signed public URLs. It is only provided to clients with WRITE permission for the key-value store.
generalAccess:
$ref: ../common/GeneralAccess.yaml
anyOf:
- $ref: ../common/GeneralAccess.yaml
- type: "null"
stats:
$ref: ./KeyValueStoreStats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@ properties:
stats:
$ref: ./RequestQueueStats.yaml
generalAccess:
$ref: ../common/GeneralAccess.yaml
anyOf:
- $ref: ../common/GeneralAccess.yaml
- type: "null"
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ properties:
hadMultipleClients:
$ref: ./SharedProperties.yaml#/HadMultipleClients
generalAccess:
$ref: ../common/GeneralAccess.yaml
anyOf:
- $ref: ../common/GeneralAccess.yaml
- type: "null"
stats:
$ref: ./RequestQueueStats.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ type: object
properties:
date:
type: string
format: date-time
examples: ["2022-10-02T00:00:00.000Z"]
serviceUsage:
$ref: ./ServiceUsage.yaml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
title: UserPrivateInfo
required:
- username
- plan
- effectivePlatformFeatures
- isPaying
type: object
properties:
id:
Expand Down
Loading