21 lines
441 B
JSON
21 lines
441 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Application settings for integrations",
|
|
"type": "object",
|
|
"properties": {
|
|
"allow_all_integrations": {
|
|
"type": "boolean"
|
|
},
|
|
"allowed_integrations": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"jira_connect_additional_audience_url": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|