---
title: Tabular Data
type: templates
category: Structured Data Parsing
cat: structured-data-parsing
order: 505
meta_title: Tabular Data Labeling Template

If you need to validate data stored in a table, use this template to display data in a tabular format and ask questions about the contents of the table.
<View>
<Header value="Table with {key: value} pairs"/>
<Table name="table" value="$item"/>
<Choices name="choice" toName="table">
<Choice value="Correct"/>
<Choice value="Incorrect"/>
</Choices>
</View>
All labeling configurations must be wrapped in View tags.
Use the Header tag to provide details to annotators:xml <Header value="Table with {key: value} pairs"/>
Use the Table object tag to display tabular data:xml <Table name="table" value="$item"/>
Use the Choices control tag to classify the table contents:xml <Choices name="choice" toName="table"> <Choice value="Correct"/> <Choice value="Incorrect"/> </Choices>