diff --git a/schema/ethernet.yml b/schema/ethernet.yml index ae7bf56..4a052ff 100644 --- a/schema/ethernet.yml +++ b/schema/ethernet.yml @@ -368,17 +368,17 @@ properties: type: boolean description: Enables the transmission of SNMP trap notifications about LLDP changes. default: false - rate-limit-config: + rate-limit-port: type: object - description: "Configuration for ingress and egress rate limiting on a specific port or interface." + description: Configuration for ingress and egress rate limiting on a specific port (in kbps) properties: - rate-limit-ingress: + ingress-kbps: type: integer - description: Sets the maximum allowed ingress (input) traffic rate for the interface, in kilobits per second (kbps). + description: Sets the maximum allowed ingress (input) traffic rate for the port, in kilobits per second (kbps). minimum: 64 maximum: 1000000000 - rate-limit-egress: + egress-kbps: type: integer - description: Sets the maximum allowed egress (output) traffic rate for the interface, in kilobits per second (kbps). + description: Sets the maximum allowed egress (output) traffic rate for the port, in kilobits per second (kbps). minimum: 64 maximum: 1000000000 \ No newline at end of file diff --git a/ucentral.schema.full.json b/ucentral.schema.full.json index a611e42..eebc98d 100644 --- a/ucentral.schema.full.json +++ b/ucentral.schema.full.json @@ -589,19 +589,19 @@ } } }, - "rate-limit-config": { + "rate-limit-port": { "type": "object", - "description": "Configuration for ingress and egress rate limiting on a specific port or interface.", + "description": "Configuration for ingress and egress rate limiting on a specific port (in kbps)", "properties": { - "rate-limit-ingress": { + "ingress-kbps": { "type": "integer", - "description": "Sets the maximum allowed ingress (input) traffic rate for the interface, in kilobits per second (kbps).", + "description": "Sets the maximum allowed ingress (input) traffic rate for the port, in kilobits per second (kbps).", "minimum": 64, "maximum": 1000000000 }, - "rate-limit-egress": { + "egress-kbps": { "type": "integer", - "description": "Sets the maximum allowed egress (output) traffic rate for the interface, in kilobits per second (kbps).", + "description": "Sets the maximum allowed egress (output) traffic rate for the port, in kilobits per second (kbps).", "minimum": 64, "maximum": 1000000000 } diff --git a/ucentral.schema.json b/ucentral.schema.json index 95c65e2..14252fb 100644 --- a/ucentral.schema.json +++ b/ucentral.schema.json @@ -529,15 +529,15 @@ } } }, - "rate-limit-config": { + "rate-limit-port": { "type": "object", "properties": { - "rate-limit-ingress": { + "ingress-kbps": { "type": "integer", "minimum": 64, "maximum": 1000000000 }, - "rate-limit-egress": { + "egress-kbps": { "type": "integer", "minimum": 64, "maximum": 1000000000 diff --git a/ucentral.schema.pretty.json b/ucentral.schema.pretty.json index a1303da..05923fa 100644 --- a/ucentral.schema.pretty.json +++ b/ucentral.schema.pretty.json @@ -623,19 +623,19 @@ } } }, - "rate-limit-config": { + "rate-limit-port": { "type": "object", - "description": "Configuration for ingress and egress rate limiting on a specific port or interface.", + "description": "Configuration for ingress and egress rate limiting on a specific port (in kbps)", "properties": { - "rate-limit-ingress": { + "ingress-kbps": { "type": "integer", - "description": "Sets the maximum allowed ingress (input) traffic rate for the interface, in kilobits per second (kbps).", + "description": "Sets the maximum allowed ingress (input) traffic rate for the port, in kilobits per second (kbps).", "minimum": 64, "maximum": 1000000000 }, - "rate-limit-egress": { + "egress-kbps": { "type": "integer", - "description": "Sets the maximum allowed egress (output) traffic rate for the interface, in kilobits per second (kbps).", + "description": "Sets the maximum allowed egress (output) traffic rate for the port, in kilobits per second (kbps).", "minimum": 64, "maximum": 1000000000 }