AA 역할 레거시 분석 smoke (runtime-role-matrix-live-20260714105818-v9-aa-001)

This commit is contained in:
forge-bot 2026-07-14 11:06:18 +00:00
parent ca998e5d7e
commit f7aac4a446

28
scope/role-aa/schema.json Normal file
View file

@ -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"]
}