ClusterCsvMapping
Mapping configuration for cluster CSV import fields.
Defines how CSV column headers correspond to cluster properties during bulk import operations. Each mapping connects a CSV column to a specific cluster field.
input ClusterCsvMapping {
csvHeader: String!
fieldName: ClusterFieldName!
}
Fields
ClusterCsvMapping.csvHeader
● String!
non-null scalar
Name of the column header in the CSV file.
Exact column header text from the CSV file that contains the data to be imported. Must match the header exactly as it appears in the first row of the CSV file. Cannot be empty.
ClusterCsvMapping.fieldName
● ClusterFieldName!
non-null enum
Target cluster field for the CSV data.
Specifies which cluster property this CSV column should populate during import. Must be a valid cluster field that supports the data type and format provided in the CSV column.
Member Of
ClusterCsvInput
input