Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. KEEP → Don't overwrite the old value for this field if it was not empty

  2. OVERWRITE

    • Overwrite the old value for this field

    • This is the default strategy for simple fields which are fields that contain a textual value such as Title and Description.

  3. MERGE

    • Only allowed for complex fields which are fields that contain sub fields, such as Authors, Keywords and Categories.

    • Merge the new sub fields with the existing sub fields

    • This is the default strategy for complex fields

  4. SUBTRACT

    • Only allowed for complex fields

    • Removes the values from the existing values.

...

In JSON the strategies are provided as follows

Code Block
{
  "MergeStrategies": {
    "Title": "KEEP",
    "Description": "OVERWRITE",
    "Keywords": "MERGE",
    "Categories": "SUBTRACT"
  },
  "Descriptive": {
     "Title": "Lore Ipsum",
     ...
  },
  "Structural": {...}
}

In XML the strategies are provided as follows

...