Skip to content

Added nullable property information to Notifications List #818

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
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
29 changes: 26 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24220,25 +24220,48 @@ components:
properties:
id:
type: integer
description: >
nullable: true
description: |
The unique ID of the Notification's entity, based on the entity
type.

Returns `null` for the following entity types:
* `account`
* `promotion`
example: 3456
label:
type: string
description: >
nullable: true
description: |
The current label for this Notification's entity.

Returns `null` for the following entity types:
* `entity_transfer`
* `promotion`
* `region`
example: Linode not booting.
type:
type: string
enum:
- account
- entity_transfer
- linode
- nodebalancer
- promotion
- region
- ticket
- volume
description: The type of entity this is related to.
example: ticket
url:
type: string
description: >
nullable: true
description: |
The URL where you can access the object this Notification is for.
If a relative URL, it is relative to the domain you retrieved the
Notification from.

Returns `null` for the `promotion` entity type.
example: /support/tickets/3456
label:
type: string
Expand Down