Select mapping and severity
- Last UpdatedJul 01, 2026
- 1 minute read
This illustrates how to map (connect) the dataset to the class library.
File Sections and Properties
After uploading a dataset, the system parses each file into file sections with detected properties (columns). Inspect these to understand the data structure:
{
dataValidation {
dataset {
list(filters : {handle : {eq : 200}}) {
fileSections {
handle name description properties {
handle name description dataType
}
}
}
}
}
}
File section property mapping
File section properties can be mapped to class library vocabulary entries. The mapping determines which validation rules apply to which data columns:
{
dataValidation {
fileSectionProperty {
list(filters : {fileSectionHandle : {eq : 300}}) {
handle name mappedPropertyIdentifier mappedPropertyName
}
}
}
}
To update a mapping
mutation {
dataValidation {
fileSectionProperty {
update(input
: {
handle : 400 etag : "current-etag..."
mappedPropertyIdentifier : "CFIHOS.Equipment.TagNumber"
}) {
handle mappedPropertyIdentifier etag
}
}
}
}