NormalForm Value Set - Campaign Management

Defines the possible normal form types.

Syntax

<xs:simpleType name="NormalForm" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:restriction base="xs:string">
    <xs:enumeration value="Conjunctive">
      <xs:annotation>
        <xs:appinfo>
          <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</EnumerationValue>
        </xs:appinfo>
      </xs:annotation>
    </xs:enumeration>
    <xs:enumeration value="Disjunctive">
      <xs:annotation>
        <xs:appinfo>
          <EnumerationValue xmlns="http://schemas.microsoft.com/2003/10/Serialization/">2</EnumerationValue>
        </xs:appinfo>
      </xs:annotation>
    </xs:enumeration>
  </xs:restriction>
</xs:simpleType>

Values

The NormalForm value set has the following values: Conjunctive, Disjunctive.

Value Description
Conjunctive Refers to conjunctive normal form (CNF) that can be described as an AND of ORs or a product of sums.

First, a set of conditions are joined using the logical OR operator. Then, the results are joined using the logical AND operator. The boolean logic will be evaluated as true if any of the conditions are met within all of the groups.
Disjunctive Refers to disjunctive normal form (DNF) that can be described as an OR of ANDs or a sum of products.

First, a set of conditions are joined using the logical AND operator. Then, the results are joined using the logical OR operator. The boolean logic will be evaluated as true if all of the conditions are met within any of the groups.

Requirements

Service: CampaignManagementService.svc v13
Namespace: https://bingads.microsoft.com/CampaignManagement/v13

Used By

PageVisitorsRule