Words question

Schema

Examples

Simple input

{
  "id": "1",
  "type": "application/x.words+json",
  "content": "Question ?"
}

Single answer

{
  "id": "1",
  "type": "application/x.words+json",
  "content": "Question ?",
  "solutions": [
    {
      "text": "ipsum",
      "caseSensitive": false,
      "score": 2,
      "feedback": "this is a feedback"
    }
  ]
}

Multiple answers

{
  "id": "1",
  "type": "application/x.words+json",
  "content": "Question ?",
  "solutions": [
    {
      "text": "ipsum",
      "caseSensitive": false,
      "score": 2
    },
    {
      "text": "amet",
      "caseSensitive": false,
      "score": 3
    }
  ]
}