Skip to content
Snippets Groups Projects
Commit e1d5ce41 authored by Demian Katz's avatar Demian Katz
Browse files

Added dynamic fields to authority core for consistency with biblio core.

parent 24b4c87c
No related merge requests found
......@@ -45,6 +45,14 @@
<!-- Tracking fields to keep track of oldest and most recent index times -->
<field name="first_indexed" type="date" indexed="true" stored="true"/>
<field name="last_indexed" type="date" indexed="true" stored="true"/>
<!-- Dynamic fields for customization without schema modification -->
<dynamicField name="*_date" type="date" indexed="true" stored="true"/>
<dynamicField name="*_date_mv" type="date" indexed="true" stored="true" multiValued="true"/>
<dynamicField name="*_str" type="string" indexed="true" stored="true"/>
<dynamicField name="*_str_mv" type="string" indexed="true" stored="true" multiValued="true"/>
<dynamicField name="*_txt" type="text" indexed="true" stored="true"/>
<dynamicField name="*_txt_mv" type="text" indexed="true" stored="true" multiValued="true"/>
</fields>
<uniqueKey>id</uniqueKey>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment