Skip to content

Commit

Permalink
adding release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenwinship committed Dec 16, 2024
1 parent 4d28d0d commit aad328e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions doc/release-notes/11027-extend-datasets-files-from-search-api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Feature to extend Search API for SPA

Added new fields to search results type=files

For Files:
- restricted: boolean
- canDownloadFile: boolean ( from file user permission)
- categories: array of string "categories" would be similar to what it is in metadata api.
For tabular files:
- variables: number/int shows how many variables we have for the tabular file
- observations: number/int shows how many observations for the tabular file



New fields added to solr schema.xml:
<field name="fileRestricted" type="boolean" stored="true" indexed="false" multiValued="false"/>
<field name="fileDownloadable" type="boolean" stored="true" indexed="false" multiValued="false"/>

See https://github.com/IQSS/dataverse/issues/11027

0 comments on commit aad328e

Please sign in to comment.