psu-libraries / cho

Project for Penn State Library's cultural heritage object repository.
Apache License 2.0
18 stars 2 forks source link

Overriding core field settings in schema_fields.yml #1043

Open awead opened 5 years ago

awead commented 5 years ago

If we try to change the settings of a core field via the schema_fields.yml file, a duplicate field is created. For example, we could choose to give description a display transformation in the collection schema:

- schema: 'Collection'
    fields:
      acknowledgments:
        order_index: 2
      narrative:
        order_index: 1
      access_rights:
        order_index: 3
      description:
        display_transformation: 'some_transformation'

However, this would result in two description fields in the collection schema instead of the one overriding the other.

ntallman commented 5 years ago

Is this related to #1030?