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
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,10 @@ sharedPost: &sharedPost
anyOf:
- $ref: ../../schemas/datasets/PutItemResponseError.yaml
- $ref: ../../schemas/common/ErrorResponse.yaml
"413":
$ref: ../../responses/PayloadTooLarge.yaml
"415":
$ref: ../../responses/UnsupportedMediaType.yaml
deprecated: false

postById:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ properties:
type: number
examples: [0.0126994444444444]
imageSizeBytes:
type: integer
type: [integer, "null"]
examples: [975770223]
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ enum:
- expired-conference-token
- failed-to-charge-user
- final-invoice-negative
- full-permission-actor-blocked-for-admin
- full-permission-actor-not-approved
- github-branch-empty
- github-issue-already-exists
Expand Down
10 changes: 5 additions & 5 deletions apify-api/openapi/components/schemas/users/Profile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ title: Profile
type: object
properties:
bio:
type: string
type: [string, "null"]
examples: [I started web scraping in 1985 using Altair BASIC.]
name:
type: string
examples: [Jane Doe]
pictureUrl:
type: string
type: [string, "null"]
format: uri
examples: [https://apify.com/img/anonymous_user_picture.png]
githubUsername:
type: string
type: [string, "null"]
examples: [torvalds.]
websiteUrl:
type: string
type: [string, "null"]
format: uri
examples: [http://www.example.com]
twitterUsername:
type: string
type: [string, "null"]
examples: ["@BillGates"]
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,19 @@ properties:
type: [object, "null"]
required:
- actorId
- actorRunId
properties:
actorId:
type: string
examples: [vvE7iMKuMc5qTHHsR]
actorRunId:
type: string
examples: [JgwXN9BdwxGcu9MMF]
actorBuildId:
type: string
examples: [HG7ML7M8z78YcAPEB]
actorTaskId:
type: [string, "null"]
Comment thread
Pijukatel marked this conversation as resolved.
examples: [zRLp8SDOZz2NyLg7K]
webhook:
anyOf:
- $ref: ./WebhookDispatchWebhookSummary.yaml
Expand Down
Loading