API Reference

The Data Prep API endpoints provide an interface to update and publish mapping groups.

MappingRule

Properties

NameTypeDescriptionRestrictions
conditionsConditions
idinteger
mappingGroupGuidIDThe unique identifier of a resource (can be a GUID).
positioninteger
sourcestring
targetstring
typestring

Enumerated Values

PropertyValue
typeLIKE
typeEXACT
typeREGEX

Example

{
  "conditions": {
    "combinator": "AND",
    "rules": [
      {
        "combinator": "AND",
        "rules": [
          {
            "field": "string",
            "operator": "NULL",
            "value": [
              "string"
            ]
          }
        ]
      }
    ]
  },
  "id": 0,
  "mappingGroupGuid": "74",
  "position": 0,
  "source": "string",
  "target": "string",
  "type": "LIKE"
}