dataset

Prev Next

dataSet JSON element

KeyValue(s)Description
logicor/and
name"DatasetName"
stricttrue/false
set[]{
"logic"
"stype"
"entity":
}
{
"logic"
"stype"
"entity"{}
"op":
"values":[]
}
  • "logic": and/or
  • "stype": TABLE/FIELD
  • "entity": 
    • "ResolutionTableName"
    • {}
  • "op": =/>/</<=/>=/contains/in/!=/between/within/like/cslike/first discrete/last discrete
  • "values": ["fieldval1"]


"dataSet": {
    "logic": "or",
    "name": "SubSet",
    "strict": true,
    "set": [
      {
        "logic": "or",
        "stype": "TABLE",
        "entity": "customer"
      },
      {
        "logic": "and",
        "stype": "FIELD",
        "entity": {
          "type": "field",
          "name": "customer.region",
          "table": "customer",
          "valueFilter": []
        },
        "op": "=",
        "values": [
          "Central"
        ]
      }
    ]
  }


dataSets": [
    {
      "logic": "or",
      "name": "Arts and Sciences - Interest",
      "strict": true,
      "set": [
        {
          "logic": "or",
          "stype": "SEGMENTS",
          "segments": {
            "ids": [
              [
                "10001"
              ]
            ]
          }
        }
      ]
    },
    {
      "logic": "or",
      "name": "Auto - Intent - Body Style - Crossover_1",
      "strict": true,
      "set": [
        {
          "logic": "and",
          "stype": "FIELD",
          "entity": {
            "type": "field",
            "name": "entities.Auto - Intent - Body Style - Crossover",
            "table": "entities",
            "valueFilter": []
          },
          "op": "=",
          "values": [
            "1"
          ]
        }
      ]
    }
  ]