Selection answer

Examples

Highlight

{
  "type": "application/x.selection+json",
  "data": {
    "mode": "highlight",
    "highlights": [
      {
        "selectionId": "selection1",
        "colorId": "color1"
      },
      {
        "selectionId": "selection2",
        "colorId": "color2"
      }
    ]
  }
}

Select

{
  "type": "application/x.selection+json",
  "data": {
    "mode": "select",
    "selections": ["selectionId1", "selectionId2"]
  }
}

Find

{
  "type": "application/x.selection+json",
  "data": {
    "mode": "find",
    "positions": [4, 8, 15, 16, 23, 42],
    "tries": 77
  }
}

No click

{
  "type": "application/x.selection+json",
  "data": {
    "mode": "find",
    "positions": [],
    "tries": 0
  }
}

Empty

{
  "type": "application/x.selection+json",
  "data": {
    "mode": "select",
    "selections": []
  }
}