Skip to content
Closed
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 @@ -14846,7 +14846,10 @@
"type": "object",
"properties": {
"bundle": {
"type": "object",
"type": [
"object",
"null"
],
"properties": {
"mediaType": {
"type": "string"
Expand Down Expand Up @@ -110221,6 +110224,10 @@
"has_next_page": {
"type": "boolean",
"description": "Indicates if there are more pages of results available (maps to hasNextPage from billing platform)"
},
"total_count": {
"type": "integer",
"description": "Total number of budgets matching the query"
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10735,7 +10735,9 @@ paths:
type: object
properties:
bundle:
type: object
type:
- object
- 'null'
properties:
mediaType:
type: string
Expand Down Expand Up @@ -79670,6 +79672,9 @@ components:
type: boolean
description: Indicates if there are more pages of results available (maps
to hasNextPage from billing platform)
total_count:
type: integer
description: Total number of budgets matching the query
required:
- budgets
get-budget:
Expand Down
9 changes: 8 additions & 1 deletion descriptions-next/api.github.com/api.github.com.json
Original file line number Diff line number Diff line change
Expand Up @@ -14846,7 +14846,10 @@
"type": "object",
"properties": {
"bundle": {
"type": "object",
"type": [
"object",
"null"
],
"properties": {
"mediaType": {
"type": "string"
Expand Down Expand Up @@ -110221,6 +110224,10 @@
"has_next_page": {
"type": "boolean",
"description": "Indicates if there are more pages of results available (maps to hasNextPage from billing platform)"
},
"total_count": {
"type": "integer",
"description": "Total number of budgets matching the query"
}
},
"required": [
Expand Down
Loading