Uploaded image for project: 'Data Collection, Analytics, and Events'
  1. Data Collection, Analytics, and Events
  2. DCAEGEN2-2672

Incorrect component-spec property types in TCA-GEN2

XMLWordPrintable

      Properties marked as boolean are set to strings instead of booleans in component-spec.

      Example:

      {
        "name": "tca.aai.enable_enrichment",
        "value": "true",
        "description": "Enables / Disables TCA A&AI Enrichment",
        "designer_editable": true,
        "sourced_at_deployment": true,
        "policy_editable": false,
        "type": "boolean",
        "required": false
      },
      

      Fix:

      {
        "name": "tca.aai.enable_enrichment",
        "value": true,
        "description": "Enables / Disables TCA A&AI Enrichment",
        "designer_editable": true,
        "sourced_at_deployment": true,
        "policy_editable": false,
        "type": "boolean",
        "required": false
      },
      

            rjanecze rjanecze
            rjanecze rjanecze
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: