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
8 changes: 4 additions & 4 deletions schemas/acl/3.4.x.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@
{
"allow": {
"type": "array",
"description": "Arbitrary group names that are allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified.",
"elements": {
"type": "string",
"description": "Arbitrary group names that are allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified."
"type": "string"
}
}
},
{
"deny": {
"type": "array",
"description": "Arbitrary group names that are not allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified.",
"elements": {
"type": "string",
"description": "Arbitrary group names that are not allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified."
"type": "string"
}
}
},
Expand Down
8 changes: 4 additions & 4 deletions schemas/acl/3.5.x.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@
{
"allow": {
"type": "array",
"description": "Arbitrary group names that are allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified.",
"elements": {
"type": "string",
"description": "Arbitrary group names that are allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified."
"type": "string"
}
}
},
{
"deny": {
"type": "array",
"description": "Arbitrary group names that are not allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified.",
"elements": {
"type": "string",
"description": "Arbitrary group names that are not allowed to consume the service or route. One of `config.allow` or `config.deny` must be specified."
"type": "string"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion schemas/opentelemetry/3.4.x.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
},
{
"resource_attributes": {
"description": "Attributes to add to the OpenTelemetry resource object, following the spec for Semantic Attributes. \nThe following attributes are automatically added:\n- `service.name`: The name of the service (default: `kong`).\n- `service.version`: The version of Kong Gateway.\n- `service.instance.id`: The node ID of Kong Gateway.\n\nYou can use this property to override default attribute values. For example, to override the default for `service.name`, you can specify `{ \"service.name\": \"my-service\" }`.",
"values": {
"type": "string",
"description": "Attributes to add to the OpenTelemetry resource object, following the spec for Semantic Attributes. \nThe following attributes are automatically added:\n- `service.name`: The name of the service (default: `kong`).\n- `service.version`: The version of Kong Gateway.\n- `service.instance.id`: The node ID of Kong Gateway.\n\nYou can use this property to override default attribute values. For example, to override the default for `service.name`, you can specify `{ \"service.name\": \"my-service\" }`.",
"required": true
},
"keys": {
Expand Down
2 changes: 1 addition & 1 deletion schemas/opentelemetry/3.5.x.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
},
{
"resource_attributes": {
"description": "Attributes to add to the OpenTelemetry resource object, following the spec for Semantic Attributes. \nThe following attributes are automatically added:\n- `service.name`: The name of the service (default: `kong`).\n- `service.version`: The version of Kong Gateway.\n- `service.instance.id`: The node ID of Kong Gateway.\n\nYou can use this property to override default attribute values. For example, to override the default for `service.name`, you can specify `{ \"service.name\": \"my-service\" }`.",
"keys": {
"type": "string",
"description": "Attributes to add to the OpenTelemetry resource object, following the spec for Semantic Attributes. \nThe following attributes are automatically added:\n- `service.name`: The name of the service (default: `kong`).\n- `service.version`: The version of Kong Gateway.\n- `service.instance.id`: The node ID of Kong Gateway.\n\nYou can use this property to override default attribute values. For example, to override the default for `service.name`, you can specify `{ \"service.name\": \"my-service\" }`.",
"required": true
},
"type": "map",
Expand Down