Skip to content

Commit

Permalink
Schema!: Change title in "get_multiple_actions_response"
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianKoestler committed Feb 11, 2025
1 parent f476e8e commit 301eade
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions openapi/hcloud.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"description": "Copied from the official API documentation for the Public Hetzner Cloud.",
"title": "Hetzner Cloud API",
"version": "5915bab"
"version": "f476e8e"
},
"servers": [
{
Expand Down Expand Up @@ -2967,7 +2967,7 @@
"actions",
"meta"
],
"title": "ActionListResponseWithMeta",
"title": "ActionListResponse",
"type": "object"
},
"get_network_response": {
Expand Down Expand Up @@ -5132,6 +5132,7 @@
"type": "object"
},
"meta": {
"description": "Metadata contained in the response",
"properties": {
"pagination": {
"$ref": "#/components/schemas/pagination"
Expand All @@ -5140,7 +5141,6 @@
"required": [
"pagination"
],
"title": "ListMeta",
"type": "object"
},
"metrics": {
Expand Down Expand Up @@ -5302,44 +5302,38 @@
"type": "object"
},
"pagination": {
"description": "See \"[Pagination](#pagination)\" for more information.",
"description": "Information about the current pagination. The keys previous_page, next_page, last_page, and total_entries may be null when on the first page, last page, or when the total number of entries is unknown | See \"[Pagination](#pagination)\" for more information.",
"properties": {
"last_page": {
"description": "Page number of the last page available. Can be null if the current page is the last one.",
"example": 4,
"description": "ID of the last page available. Can be null if the current page is the last one. | Page number of the last page available. Can be null if the current page is the last one.",
"format": "int64",
"nullable": true,
"type": "integer"
},
"next_page": {
"description": "Page number of the next page. Can be null if the current page is the last one.",
"example": 4,
"description": "ID of the next page. Can be null if the current page is the last one. | Page number of the next page. Can be null if the current page is the last one.",
"format": "int64",
"nullable": true,
"type": "integer"
},
"page": {
"description": "Current page number.",
"example": 3,
"description": "Current page number | Current page number.",
"format": "int64",
"type": "integer"
},
"per_page": {
"description": "Maximum number of entries returned per page.",
"example": 25,
"description": "Maximum number of items shown per page in the response | Maximum number of entries returned per page.",
"format": "int64",
"type": "integer"
},
"previous_page": {
"description": "Page number of the previous page. Can be null if the current page is the first one.",
"example": 2,
"description": "ID of the previous page. Can be null if the current page is the first one. | Page number of the previous page. Can be null if the current page is the first one.",
"format": "int64",
"nullable": true,
"type": "integer"
},
"total_entries": {
"description": "Total number of entries that exist for this query. Can be null if unknown.",
"example": 100,
"description": "The total number of entries that exist in the database for this query. Nullable if unknown. | Total number of entries that exist for this query. Can be null if unknown.",
"format": "int64",
"nullable": true,
"type": "integer"
Expand Down

0 comments on commit 301eade

Please sign in to comment.