Skip to content

Commit

Permalink
Merge pull request #62 from krakend/update_old_schema
Browse files Browse the repository at this point in the history
Bundle old v2.8 schema
  • Loading branch information
alombarte authored Jan 29, 2025
2 parents 695596c + 1349267 commit fbd1031
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions v2.8/krakend.json
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,7 @@
},
"output_remove_unset_values": {
"title": "Output removes unset values",
"description": "When the response has missing fields from the definition, they are returned with default values. Setting this flag to `true` removes those fields from the response, while setting it to `false` or not setting it, returns all the fields in the definition.\n\nSee: https://www.krakend.io/docs/enterprise/backends/grpc/",
"description": "This attribute defines what to do when a field that is declared in the definition does not exist in the backend response. When the flag is `true`, any fields in the definition that are not present in the backend response are removed before returning the content to the user. When the flag is `false` missing fields are returned but set with a zeroed-value depending on its type (zero, nil, false, etc).\n\nSee: https://www.krakend.io/docs/enterprise/backends/grpc/",
"default": false,
"type": "boolean"
},
Expand Down Expand Up @@ -2561,11 +2561,11 @@
"enum": [
"integer",
"string",
"bool",
"boolean",
"object",
"array",
"float",
"datetime"
"date-time"
]
},
"enum": {
Expand Down Expand Up @@ -2685,11 +2685,11 @@
"enum": [
"integer",
"string",
"bool",
"boolean",
"object",
"array",
"float",
"datetime"
"date-time"
]
},
"enum": {
Expand Down Expand Up @@ -2768,11 +2768,11 @@
"enum": [
"integer",
"string",
"bool",
"boolean",
"object",
"array",
"float",
"datetime"
"date-time"
]
},
"enum": {
Expand Down Expand Up @@ -3533,7 +3533,7 @@
"properties": {
"methods": {
"title": "Methods",
"description": "The gRPC methods available for this service (this is not related with HTTP methods despite using the same name).\n\nSee: https://www.krakend.io/docs/enterprise/grpc/server/",
"description": "The gRPC methods available for this service. The `methods` entry is the gRPC equivalent of the HTTP `endpoints`, meaning that the `backend` object under `methods` can use the same configuration as HTTP, including all its `extra_config` parameters.\n\nSee: https://www.krakend.io/docs/enterprise/grpc/server/",
"type": "array",
"items": {
"type": "object",
Expand Down Expand Up @@ -9049,6 +9049,12 @@
"default": false,
"type": "boolean"
},
"disable_otel_metrics": {
"title": "Disable OpenTelemetry metrics",
"description": "Disables the OpenTelemetry metrics for the websocket connections.\n\nSee: https://www.krakend.io/docs/enterprise/websockets/",
"default": false,
"type": "boolean"
},
"disconnect_event": {
"title": "Notify disconnections",
"description": "Whether to send notification events to the backend or not when users disconnect from their Websockets connection.\n\nSee: https://www.krakend.io/docs/enterprise/websockets/",
Expand Down

0 comments on commit fbd1031

Please sign in to comment.