AA 역할 레거시 분석 smoke #6

Merged
Showing only changes of commit f7aac4a446 - Show all commits

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