Skip to content
Developer Preview

UserInputQuestion

No description is available.

  • header
  • id
  • options
  • question
  • selection
Source

schema/msp/experimental/msp.schema.json#/types/UserInputQuestion

{
"properties": {
"header": {
"type": "string"
},
"id": {
"type": "string"
},
"options": {
"items": {
"$ref": "#/$defs/UserInputOption"
},
"type": "array"
},
"question": {
"type": "string"
},
"selection": {
"$ref": "#/$defs/UserInputSelection"
}
},
"required": [
"header",
"id",
"options",
"question",
"selection"
],
"type": "object"
}