How to create more than one table type variable in DataLabeling?

Can anyone help me to create more than one table type variable in DataLabeling?

Regards,
Nagaraj Naik

@Nagaraj_Jatti_Naik

In UiPath Data Labeling, you can create multiple table type variables in a single labeling task by defining them in the schema file.

Here’s how you can do it:

  1. Open the schema file in UiPath Studio or any text editor.
  2. Define the first table type variable using the following syntax:
{
    "name": "Table1",
    "type": "table",
    "columns": [
        {"name": "Column1", "type": "string"},
        {"name": "Column2", "type": "number"},
        {"name": "Column3", "type": "date"}
    ]
}

In this example, the table type variable is named “Table1” and has three columns, each with a different data type.

  1. Define the second table type variable using the same syntax, but with a different name and column definitions:
{
    "name": "Table2",
    "type": "table",
    "columns": [
        {"name": "Column1", "type": "string"},
        {"name": "Column2", "type": "number"}
    ]
}

In this example, the second table type variable is named “Table2” and has two columns.

  1. Save the schema file.
  2. When you create a new labeling task in UiPath Data Labeling, select the schema file that includes the multiple table type variables.
  3. When you create the label, you will see a dropdown list that allows you to select which table type variable you want to label.
  4. You can then label the data in the selected table type variable as you normally would in UiPath Data Labeling.

Note that you can define as many table type variables as needed in the schema file, as long as each one has a unique name.

Hi @Nagaraj_Jatti_Naik ,

Could you maybe also check the below post :