AttributeDescriptionCsvMapping
Mapping configuration for CSV import operations linking CSV columns to attribute description fields.
Defines how CSV file columns should be mapped to attribute description properties during import operations. Each mapping connects a CSV header name to a specific attribute description field, enabling flexible CSV formats and data transformation during bulk attribute description processing.
input AttributeDescriptionCsvMapping {
csvHeader: String!
fieldName: AttributeDescriptionFieldName!
}
Fields
AttributeDescriptionCsvMapping.csvHeader
● String!
non-null scalar
Name of the column header in the CSV file.
Must match exactly with the column header in the uploaded CSV file. Case-sensitive string that identifies which CSV column contains the data for the mapped attribute description field.
AttributeDescriptionCsvMapping.fieldName
● AttributeDescriptionFieldName!
non-null enum
Target attribute description field that the CSV column should map to.
Specifies which attribute description property should receive the data from the corresponding CSV column. Must be a valid AttributeDescriptionFieldName enum value that defines the available attribute description fields for mapping.