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
4 changes: 2 additions & 2 deletions apify-api/openapi/components/schemas/actors/Version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ properties:
examples: [false]
description: Whether to inject the environment variables at build time.
buildTag:
type: string
type: [string, "null"]
examples: [latest]
description: The tag name to apply to a successful build of this version.
description: The tag name to apply to a successful build of this version. Can be `null` when the version has no build tag.
sourceFiles:
$ref: ./VersionSourceFiles.yaml
description: Applies when the `sourceType` is `SOURCE_FILES`. Represents the Actor's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ required:
- title
- name
- username
- userFullName
- description
- stats
- currentPricingInfo
type: object
Expand All @@ -23,10 +21,10 @@ properties:
type: string
examples: [jane35]
userFullName:
type: string
type: [string, "null"]
examples: [Jane H. Doe]
description:
type: string
type: [string, "null"]
Comment on lines +24 to +27

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to explain when these two can be missing/null, like in the Version schema

examples: [My public actor!]
categories:
type: array
Expand Down
18 changes: 0 additions & 18 deletions apify-api/openapi/components/schemas/users/Plan.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,6 @@
title: Plan
required:
- id
- description
- isEnabled
- monthlyBasePriceUsd
- monthlyUsageCreditsUsd
- enabledPlatformFeatures
- maxMonthlyUsageUsd
- maxActorMemoryGbytes
- maxMonthlyActorComputeUnits
- maxMonthlyResidentialProxyGbytes
- maxMonthlyProxySerps
- maxMonthlyExternalDataTransferGbytes
- maxActorCount
- maxActorTaskCount
- dataRetentionDays
- availableProxyGroups
- teamAccountSeatCount
- supportLevel
- availableAddOns
type: object
properties:
id:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
title: UserPrivateInfo
required:
- id
- username
- profile
- email
- proxy
- plan
- effectivePlatformFeatures
- createdAt
- isPaying
type: object
properties:
Expand Down
Loading