Versions Compared

Key

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

...

Customizing copied metadata

Config path

Default value

Description

$dam.previews.column[0]

Code Block
{
  "fieldsToCopy": [
    {
      "pattern": "preview.copy.name",
      "fields": [
        {
          "field": "name"
        }
      ]
    },
    {
      "pattern": "preview.copy.br",
      "fields": [

]
    },
    {
      "pattern": "preview.copy.author",
      "fields": [
        {
          "field": "photograph.name"
        }
      ]
    }
  ],
  "withBullet": false
}

Handle copy pattern

Lists the metadata that will be copied when cliking the “copy credits” button.

Each element is configured as so:

Code Block
{
  "pattern": <label>,
  "fields": [
    {
      "field": <field>
    }
  ]
}

The labels are keys from edocs. Here are a few: preview.copy.name (will display"Asset:"), preview.copy.endrights (will display"Expiration date:"), preview.copy.author (will display"Photographer:"), ...

The fields are metadata from the asset (photograph.name, copyright, dteendrights, etc…).

It is also possible to add a carriage return between fields (it is recommended, otherwise the texts will be copied side by side):

Code Block
{
  "pattern": "preview.copy.br",
  "fields": []
}

Customizing Metadata Display

...