Skip to content

Commit

Permalink
added nested properties for bot configuration (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesji-msft-teams authored Oct 19, 2023
1 parent 3f158bf commit 7d0806b
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions teams/vDevPreview/MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -354,27 +354,31 @@
"team": {
"type": "object",
"additionalProperties": false,
"fetchTask": {
"type": "boolean",
"description": "A boolean value that indicates if it should fetch bot config task module dynamically.",
"default": false
},
"taskInfo": {
"$ref": "#/definitions/taskInfo",
"description": "Task module to be launched when fetch task set to false."
"properties": {
"fetchTask": {
"type": "boolean",
"description": "A boolean value that indicates if it should fetch bot config task module dynamically.",
"default": false
},
"taskInfo": {
"$ref": "#/definitions/taskInfo",
"description": "Task module to be launched when fetch task set to false."
}
}
},
"groupChat": {
"type": "object",
"additionalProperties": false,
"fetchTask": {
"type": "boolean",
"description": "A boolean value that indicates if it should fetch bot config task module dynamically.",
"default": false
},
"taskInfo": {
"$ref": "#/definitions/taskInfo",
"description": "Task module to be launched when fetch task set to false."
"properties": {
"fetchTask": {
"type": "boolean",
"description": "A boolean value that indicates if it should fetch bot config task module dynamically.",
"default": false
},
"taskInfo": {
"$ref": "#/definitions/taskInfo",
"description": "Task module to be launched when fetch task set to false."
}
}
}
}
Expand Down

0 comments on commit 7d0806b

Please sign in to comment.