Your upload data must be in the JSON format. Below are the details of the required structure:

```json
{
    "config": {
        "instructions": "A string value for instructions.",
        "categories": "An array of category names used in the data.",
        "enable_sorting": "Boolean value indicating whether sorting is enabled within each category.",
        "enable_sorting_between_categories": "Boolean value indicating whether sorting is enabled between categories. Currently, only 'false' is supported.",
        "enable_rating": "Boolean value indicating whether rating is enabled.",
        "enable_edit_marking": "Boolean value indicating whether edit marking is enabled. If true, each generation must contain an 'edits' key.",
    },
    "data": [
        {
            "ID": "Optional. An identifier for your own reference.",
            "Original": "Required. The original sentence.",
            "categoryXXX": [
                {
                    "generation": "Required. The generated sentence.",
                    "system": "Required. The system name, it can be any string value.",
                    "edits": "Optional. An array of edits applied to the original sentence as determined by a word-alignment model. Each edit is a sub-array with the format: [edit_type, char_start, char_end]. The 'edit_type' can be 0 for deletion, 1 for substitution / insertion, and 2 for split."
                },
                "Add additional generations in this category as needed."
            ],
            "Add additional categories as needed. Only include categories with available generations."
        },
        "Add additional data instances as needed."
    ]
}
```