Skip to content

Commit

Permalink
Update schema to include gpn fields (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
JCRPaquin committed Jan 8, 2024
1 parent 811eee1 commit e60e0ab
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions deploy/adsabs/server/solr/collection1/conf/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1574,6 +1574,32 @@
omitTermFreqAndPositions="true" docValues="true" />

<!--
@api.doc
* gpn
An array of strings containing fully qualified planetary feature names.
* gpn_id
An array of integers that uniquely identify each planetary feature.
* gpn_facet_hier_2level
A 2 level hierarchical facet for searching planetary features by group.
* gpn_facet_hier_3level
A 3 level hierarchical facet for searching planetary features by group.
-->

<field name="gpn" type="ads_text" indexed="true"
stored="true" multiValued="true" omitNorms="true" />

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

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

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

<!--
@api.doc
* citation_count
The number of citations associated with this record
Expand Down

0 comments on commit e60e0ab

Please sign in to comment.