Skip to content

Commit 035b6ed

Browse files
committed
chore: command schema renames
1 parent 717f701 commit 035b6ed

File tree

4 files changed

+47
-56
lines changed

4 files changed

+47
-56
lines changed

schemas/agent-publish-authoring-bundle.json

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$ref": "#/definitions/AgentPublishAuthoringBundleResult",
4+
"definitions": {
5+
"AgentPublishAuthoringBundleResult": {
6+
"type": "object",
7+
"properties": {
8+
"success": {
9+
"type": "boolean"
10+
},
11+
"botDeveloperName": {
12+
"type": "string"
13+
},
14+
"errors": {
15+
"type": "array",
16+
"items": {
17+
"type": "string"
18+
}
19+
}
20+
},
21+
"required": ["success"],
22+
"additionalProperties": false
23+
}
24+
}
25+
}

schemas/agent-validate-authoring-bundle.json

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$ref": "#/definitions/AgentValidateAuthoringBundleResult",
4+
"definitions": {
5+
"AgentValidateAuthoringBundleResult": {
6+
"type": "object",
7+
"properties": {
8+
"success": {
9+
"type": "boolean"
10+
},
11+
"errors": {
12+
"type": "array",
13+
"items": {
14+
"type": "string"
15+
}
16+
}
17+
},
18+
"required": ["success"],
19+
"additionalProperties": false
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)