28 lines
539 B
JSON
28 lines
539 B
JSON
{
|
|
"$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"]
|
|
}
|