diff --git a/schemas/acl/3.4.x.json b/schemas/acl/3.4.x.json index bba99a43..11667e9c 100644 --- a/schemas/acl/3.4.x.json +++ b/schemas/acl/3.4.x.json @@ -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" } } }, diff --git a/schemas/acl/3.5.x.json b/schemas/acl/3.5.x.json index c529e991..e0c813b4 100644 --- a/schemas/acl/3.5.x.json +++ b/schemas/acl/3.5.x.json @@ -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" } } }, diff --git a/schemas/opentelemetry/3.4.x.json b/schemas/opentelemetry/3.4.x.json index a17980f5..9210ed58 100644 --- a/schemas/opentelemetry/3.4.x.json +++ b/schemas/opentelemetry/3.4.x.json @@ -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": { diff --git a/schemas/opentelemetry/3.5.x.json b/schemas/opentelemetry/3.5.x.json index 155caefc..c9346512 100644 --- a/schemas/opentelemetry/3.5.x.json +++ b/schemas/opentelemetry/3.5.x.json @@ -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",