Set the stage for skill-level permission approval in addition to command-level. Behind a feature flag.
22 lines
No EOL
402 B
JSON
22 lines
No EOL
402 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"SkillApprovalDecision": {
|
|
"enum": [
|
|
"approve",
|
|
"decline"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"decision": {
|
|
"$ref": "#/definitions/SkillApprovalDecision"
|
|
}
|
|
},
|
|
"required": [
|
|
"decision"
|
|
],
|
|
"title": "SkillRequestApprovalResponse",
|
|
"type": "object"
|
|
} |