Bin
2025-12-17 2e6c955be321cefd7e0c4a3031eab805e0a5a303
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<View>
  <Text name="query" value="$query" />
  <Header value="Select document related to the query:" />
  <View style="display: flex">
    <View>
    <Text name="text1" value="$text1" />
    <Text name="text2" value="$text2" />
    <Text name="text3" value="$text3" />
    </View>
    <View style="padding: 30px">
    <Choices name="selection" toName="query" required="true" choice="multiple">
      <Choice value="One" />
      <Choice value="Two" />
        <Choice value="Three" />
    </Choices>
    </View>
  </View>
</View>
 
<!-- {"data": {
    "query": "What is the most beautiful data labeling tool in the world?",
    "text1": "Discover the best data labeling software in less than 3 minutes",
    "text2": "Label Studio is one of the best solutions for your data",
    "text3": "Nobody can live without using Label Studio in their daily routine..."
},
"annotations": [{"result":
[
    {
        "value": {
            "choices": [
                "Two",
                "Three"
            ]
        },
        "id": "W82tf6hGHu",
        "from_name": "selection",
        "to_name": "query",
        "type": "choices"
    }
]
}]}
-->