From f7aac4a446455123bc47493aa3f102625db88c29 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 11:06:18 +0000 Subject: [PATCH] =?UTF-8?q?AA=20=EC=97=AD=ED=95=A0=20=EB=A0=88=EA=B1=B0?= =?UTF-8?q?=EC=8B=9C=20=EB=B6=84=EC=84=9D=20smoke=20(runtime-role-matrix-l?= =?UTF-8?q?ive-20260714105818-v9-aa-001)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scope/role-aa/schema.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 scope/role-aa/schema.json diff --git a/scope/role-aa/schema.json b/scope/role-aa/schema.json new file mode 100644 index 0000000..1dc3111 --- /dev/null +++ b/scope/role-aa/schema.json @@ -0,0 +1,28 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "AA Role Schema", + "type": "object", + "properties": { + "roleId": { + "type": "string", + "pattern": "^[A-Z]{2}$" + }, + "enabled": { + "type": "boolean" + }, + "config": { + "type": "object", + "properties": { + "timeout": { + "type": "integer", + "minimum": 1 + }, + "retryCount": { + "type": "integer", + "minimum": 0 + } + } + } + }, + "required": ["roleId", "enabled"] +}