Column attribute values for the product.
A column attribute have a number of pre-defined columns and only one attribute value per column. One can think of it as a table with pre-defined columns but only one row.
Expected input format:
"column": {
"<column ID>": "<column value>",
"<column ID>": "<column value>",
...
}
Example:
Let us say that I have these columns pre-defined in the column attribute definition:
"Column 1", with ID: 6356b491590801000124ef2d
"Column 2", with ID: 6356b491590801000124ef2e
"Column 3", with ID: 6356b491590801000124ef2f
I would like to store these values ("A", "B" and "C") in the columns:
| "Column 1" | "Column 2" | "Column 3" |
|---|
| Value (row 1): | "A" | "B" | "C" |
Then that would correspond to this json structure:
"column": {
"6356b491590801000124ef2d": "A",
"6356b491590801000124ef2e": "B",
"6356b491590801000124ef2f": "C"
}