Issue
Every version of the schema I've seen says the value property of Input.Number only accepts a number.

However, I've tried using a string for the value in both Web Chat and Microsoft Teams and they work. Both of these inputs render the same:
{
"type": "Input.Number",
"id": "id-number",
"value": 7,
"placeholder": "Placeholder text"
},
{
"type": "Input.Number",
"id": "id-numberString",
"value": "7",
"placeholder": "Placeholder text"
},
Which is correct? Should the schema say "number, string" instead of just number? Or are those renderers operating contrary to the schema?
Issue
Every version of the schema I've seen says the
valueproperty ofInput.Numberonly accepts a number.However, I've tried using a string for the value in both Web Chat and Microsoft Teams and they work. Both of these inputs render the same:
{ "type": "Input.Number", "id": "id-number", "value": 7, "placeholder": "Placeholder text" }, { "type": "Input.Number", "id": "id-numberString", "value": "7", "placeholder": "Placeholder text" },Which is correct? Should the schema say "
number,string" instead of justnumber? Or are those renderers operating contrary to the schema?