Set a description for unstructured documents - Fluid Topics - 4.3

Fluid Topics Configuration and Administration Guide

Category
Reference Guides
Audience
public
Version
Latest

It is possible to use the ft:description property to define a description for Unstructured Documents.

The following behavior can be expected:

  • If the ft:description property is defined, it is used as a description for the crawl.

  • If both the ft:description property and the ft:description facet element are defined, the metadata element overrides the property.

The ft:description property

It is possible to set the description by using the ft:description property.

The following lines show a control file with a description set with the ft:description property:

<?xml version="1.0" encoding="UTF-8"?>
<controlFile>
  <resources>
    <resource>
      <filePath>standard-time-zones_of_the_world.png</filePath>
      <displayName>Standard Time Zones of the World</displayName>
      <description>This document helps you define a time zone to set for your time travel.</description>
    </resource>
  </resources>
</controlFile>

The ft:description metadata element

It is also possible to set the description for an unstructured document in an ft:description metadata element.

The following lines show a control file with a description set in the map metadata:

<?xml version="1.0" encoding="UTF-8"?>
<controlFile>
  <resources>
    <resource>
      <filePath>standard-time-zones_of_the_world.png</filePath>
      <displayName>Standard Time Zones of the World</displayName>
      <metas>
      <meta key="ft:description">
        <value>This document helps you define a time zone to set for your time travel.</value>
      </meta>
      <metas>
    </resource>
  </resources>
</controlFile>

Fluid Topics transforms these properties into the ft:description metadata element.