Default column values
It can be helpful to store default values for columns that get not included in the CSV file.
|
Example
-
Only for simple products; therefore, the column
product_type
is unnecessary.
A custom snippet can get used to define default values for columns not included in the CSV file.
- The following fragment must look like the below displayed code:
{
"default-values": {
"catalog_product": {
"my-column": "my-column-value" (1)
}
}
}
1 | For each user-defined field, a key-value pair can get specified |
|