add message field for python schema

This commit is contained in:
Christien Rioux 2023-10-21 15:03:26 -04:00
parent 697ac5e9ce
commit bdee12bbf5

View File

@ -2974,7 +2974,8 @@
{ {
"type": "object", "type": "object",
"required": [ "required": [
"kind" "kind",
"message"
], ],
"properties": { "properties": {
"kind": { "kind": {
@ -2982,6 +2983,9 @@
"enum": [ "enum": [
"TryAgain" "TryAgain"
] ]
},
"message": {
"type": "string"
} }
} }
}, },
@ -3002,7 +3006,8 @@
{ {
"type": "object", "type": "object",
"required": [ "required": [
"kind" "kind",
"message"
], ],
"properties": { "properties": {
"kind": { "kind": {
@ -3010,6 +3015,9 @@
"enum": [ "enum": [
"InvalidTarget" "InvalidTarget"
] ]
},
"message": {
"type": "string"
} }
} }
}, },