Skip to content

Commit

Permalink
Add UAT fields to the schema (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
JCRPaquin authored Dec 30, 2024
1 parent 9d24256 commit 365d1d6
Showing 1 changed file with 21 additions and 4 deletions.
25 changes: 21 additions & 4 deletions deploy/adsabs/server/solr/collection1/conf/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1289,10 +1289,6 @@
docValues="true"/>
<field name="aff_id" type="affiliation_tokens" indexed="true" stored="true"
multiValued="true" omitNorms="true"/>

<!-- for Unified Astronomy Thesaurus -->
<field name="uat" type="uat_tokens" indexed="true" stored="true"
multiValued="true" omitNorms="true"/>


<field name="email" type="normalized_text_ascii" indexed="true"
Expand Down Expand Up @@ -1589,6 +1585,27 @@
indexed="true" stored="true" multiValued="true" omitNorms="true"
omitTermFreqAndPositions="true" docValues="true" />

<!--
@api.doc
* uat
Unified Astronomy Thesaurus feature names.
* uat_id
An array of integers that uniquely identify UAT features.
* uat_facet_hier
A hierarchical facet for searching UAT features by group.
-->
<!-- for Unified Astronomy Thesaurus -->
<field name="uat" type="uat_tokens" indexed="true" stored="true"
multiValued="true" omitNorms="true"/>

<field name="uat_id" type="int" indexed="true" stored="true"
multiValued="true" omitNorms="true" omitTermFreqAndPositions="true" />

<field name="uat_facet_hier" type="string" indexed="true"
stored="true" multiValued="true" omitNorms="true"
omitTermFreqAndPositions="true" docValues="true" />


<!--
@api.doc
* gpn
Expand Down

0 comments on commit 365d1d6

Please sign in to comment.