Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type: string
enum:
- ownedByMe
- sharedWithMe
examples: [ownedByMe]
11 changes: 11 additions & 0 deletions apify-api/openapi/paths/datasets/datasets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,17 @@ get:
schema:
type: boolean
example: true
- name: ownership
in: query
description: |
Filter by ownership. If this parameter is omitted, all accessible datasets are returned.
- `ownedByMe`: Return only datasets owned by the user.
- `sharedWithMe`: Return only datasets shared with the user by other users.
style: form
explode: true
schema:
$ref: ../../components/schemas/common/StorageOwnership.yaml
responses:
"200":
description: ""
Expand Down
11 changes: 11 additions & 0 deletions apify-api/openapi/paths/key-value-stores/key-value-stores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@ get:
schema:
type: boolean
example: true
- name: ownership
in: query
description: |
Filter by ownership. If this parameter is omitted, all accessible key-value stores are returned.
- `ownedByMe`: Return only key-value stores owned by the user.
- `sharedWithMe`: Return only key-value stores shared with the user by other users.
style: form
explode: true
schema:
$ref: ../../components/schemas/common/StorageOwnership.yaml
responses:
"200":
description: ""
Expand Down
11 changes: 11 additions & 0 deletions apify-api/openapi/paths/request-queues/request-queues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@ get:
schema:
type: boolean
example: true
- name: ownership
in: query
description: |
Filter by ownership. If this parameter is omitted, all accessible request queues are returned.
- `ownedByMe`: Return only request queues owned by the user.
- `sharedWithMe`: Return only request queues shared with the user by other users.
style: form
explode: true
schema:
$ref: ../../components/schemas/common/StorageOwnership.yaml
responses:
"200":
description: ""
Expand Down
Loading