Blocks
How each block is represented in the API
Below are example representations of all currently supported block types in the API.
{"sentence": "A random sentence"}
{"an_email": "[email protected]"}
{"a_number": 42}
{"a_date": "2021-01-31"}
{"a_link": "https://example.com"}
{"some_image": "https://example.com/logo.png"}
{"a_pdf": "https://example.com/file.pdf"}
{"website": "https://example.com"}
{"a_video": "https://example.com/video.mp4"}
{"a_song": "https://example.com/song.mp3"}
{"true_or_false": true}
{"choose_a_color": "red"}
{"choose_few_colors": ["red", "blue", "green"]}
{
"form_sequence": {
"question_1": true,
"question_2": "this is a random answer",
"question_3": "option-2"
}
}
{
"some_text": "This can be **Markdown** or <b>HTML</b> formatted depending on the block's configuration."
}
{
"ner_data": {
"text": "This is a paragraph of text",
"entities": [{
"start": 5,
"end": 7,
"category": "verb"
}]
}
}
{
"bounding_boxes_id": {
"image": "https://i2.wp.com/oohtoday.com/wp-content/uploads/2018/08/formetco-photo-digital-unit-in-canada.jpg?fit=1995%2C1125&ssl=1",
"objects": [
{
"w": 0.274, // 27.4%
"h": 0.2955, // 29.55%
"y": 0.1051, // 10.51%
"x": 0.2067, // 20.67%
"category": "billboard"
},
{
"w": 0.2244,
"h": 0.2585,
"y": 0.5852,
"x": 0.6571,
"category": "vehicle"
}
]
}
}
Coordinates are expressed in relative terms with respect to the image in question to accommodate for responsiveness in terms of users' varying window dimensions and screen resolutions. With that, Bounding Box blocks can change in size without disrupting how past tasks are displayed.
{
"sentences": [
"Foo",
"Bar"
]
}
Last modified 1yr ago