From bda7fbfc9a614f7d7e0e3953ad13b529304242fb Mon Sep 17 00:00:00 2001 From: PatrickMenoti <82882574+PatrickMenoti@users.noreply.github.com> Date: Thu, 13 Jun 2024 16:23:48 -0300 Subject: [PATCH] chore: add order and is_active to rules engine requests (#213) * chore: add order and is_active to rules engine requests * refactor: add limit to integer numbers --- edgeapplications.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/edgeapplications.yaml b/edgeapplications.yaml index ddd59c1..38b161d 100644 --- a/edgeapplications.yaml +++ b/edgeapplications.yaml @@ -4281,6 +4281,13 @@ components: properties: name: type: string + order: + format: int64 + type: integer + maximum: 10000 + minimum: 1 + is_active: + type: boolean description: type: string maxLength: 1000 @@ -4329,6 +4336,13 @@ components: properties: name: type: string + order: + format: int64 + type: integer + maximum: 10000 + minimum: 1 + is_active: + type: boolean description: type: string maxLength: 1000 @@ -4377,6 +4391,13 @@ components: properties: name: type: string + order: + format: int64 + type: integer + maximum: 10000 + minimum: 1 + is_active: + type: boolean description: type: string maxLength: 1000