<!-- 
RSS generated by JIRA (1001.0.0-SNAPSHOT#100246-sha1:7a5c50119eb0633d306e14180817ddef5e80c75d) at Fri Feb 09 00:26:06 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>FOLIO Jira</title>
    <link>https://folio-org.atlassian.net</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>1001.0.0-SNAPSHOT</version>
        <build-number>100246</build-number>
        <build-date>07-02-2024</build-date>
    </build-info>

<item>
            <title>[UXPROD-2695] Display Rounded Result Counts in Apps Using SearchAndSort (Inventory and Requests)</title>
                <link>https://folio-org.atlassian.net/browse/UXPROD-2695</link>
                <project id="10000" key="UXPROD">UX Product</project>
                    <description>&lt;p&gt;&lt;b&gt;Purpose:&lt;/b&gt; The scope of this work is to display the rounded result counts in &quot;core&quot; apps using the SearchAndSort component (i.e. Inventory and Requests).  Other apps that use SearchAndSort (e.g. Courses, Licenses and Agreements etc) will be able to make use of the work done in the component BUT they will need to their own RMB upgrades first.  &lt;/p&gt;

&lt;p&gt;A separate feature will be created for apps using the SearchAndSortQuery component: 
    &lt;span class=&quot;jira-issue-macro resolved&quot; data-jira-key=&quot;UXPROD-2702&quot; &gt;
                &lt;a href=&quot;https://folio-org.atlassian.net/browse/UXPROD-2702&quot; class=&quot;jira-issue-macro-key issue-link&quot;  title=&quot;Display Rounded Result Counts in Apps Using SearchAndSortQuery (i.e. Users)&quot; &gt;
            &lt;img class=&quot;icon&quot; src=&quot;https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10322?size=medium&quot; /&gt;
            UXPROD-2702
        &lt;/a&gt;
                                                    &lt;span class=&quot;aui-lozenge aui-lozenge-subtle aui-lozenge-success jira-macro-single-issue-export-pdf&quot;&gt;Closed&lt;/span&gt;
            &lt;/span&gt;
&lt;/p&gt;

&lt;p&gt;This work will be done by Core Functional after Core Platform has developed the infrastructure as part of 
    &lt;span class=&quot;jira-issue-macro resolved&quot; data-jira-key=&quot;UXPROD-2623&quot; &gt;
                &lt;a href=&quot;https://folio-org.atlassian.net/browse/UXPROD-2623&quot; class=&quot;jira-issue-macro-key issue-link&quot;  title=&quot;Wait for POC of Elastic Search - Round estimated search result hit count (totalRecords)&quot; &gt;
            &lt;img class=&quot;icon&quot; src=&quot;https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10322?size=medium&quot; /&gt;
            UXPROD-2623
        &lt;/a&gt;
                                                    &lt;span class=&quot;aui-lozenge aui-lozenge-subtle aui-lozenge-success jira-macro-single-issue-export-pdf&quot;&gt;Closed&lt;/span&gt;
            &lt;/span&gt;
 &lt;/p&gt;

&lt;p&gt;&lt;b&gt;Description of work:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The totalRecords search result hit count number returned by RMB is precise if totalRecords is below 1000 and it is only an estimation if totalRecords &amp;gt;= 1000 (&lt;a href=&quot;https://github.com/folio-org/raml-module-builder#estimated-totalrecords&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;details&lt;/a&gt;).&lt;br/&gt;
The front-end currently displays &quot;8081 records found&quot; for estimations.&lt;br/&gt;
This is misleading (&lt;a href=&quot;https://en.wikipedia.org/wiki/False_precision&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;false precision&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;&quot;about&quot; should be prepended for &amp;gt;= 1000.&lt;/p&gt;

&lt;p&gt;The number should be rounded for &amp;gt;= 1000.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Algorithm for the front-end:&lt;/b&gt;&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; totalRecordsEstimated is &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
  print &lt;span class=&quot;code-quote&quot;&gt;&quot;about &quot;&lt;/span&gt; + totalRecordsRounded
&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; totalRecordsEstimated is &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
  print totalRecords
&lt;span class=&quot;code-comment&quot;&gt;// totalRecordsEstimated is undefined until all back-ends have upgraded RMB,
&lt;/span&gt;&lt;span class=&quot;code-comment&quot;&gt;// handle &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt; gracefully &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; folio-testing:
&lt;/span&gt;&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; totalRecords &amp;lt; 1000
  print totalRecords
&lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;
  print &lt;span class=&quot;code-quote&quot;&gt;&quot;about &quot;&lt;/span&gt; + totalRecords + &lt;span class=&quot;code-quote&quot;&gt;&quot; (upgrade back-end &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; rounding)&quot;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;


&lt;p&gt;&lt;b&gt;Story outline:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Upgrade Inventory to RMB containing fix&lt;/li&gt;
	&lt;li&gt;Upgrade Requests to RMB contsining fix&lt;/li&gt;
	&lt;li&gt;Display rounded result counts in SearchAndSort&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;Scenarios:&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Scenario
	&lt;ul&gt;
		&lt;li&gt;Given a result count is estimated (current understanding is that result counts above 1,000 are estimates)&lt;/li&gt;
		&lt;li&gt;When displayed in FOLIO&lt;/li&gt;
		&lt;li&gt;Then:
		&lt;ul&gt;
			&lt;li&gt;Result count should be preceded by &quot;about&quot;&lt;/li&gt;
			&lt;li&gt;Result count should be rounded using the &quot;Rounded to first digit&quot; method&lt;/li&gt;
			&lt;li&gt;For example:
			&lt;ul&gt;
				&lt;li&gt;Estimated result count from Postgres = 32351&lt;/li&gt;
				&lt;li&gt;Displays in FOLIO as &quot;about 30,000 records found&quot;&lt;/li&gt;
			&lt;/ul&gt;
			&lt;/li&gt;
		&lt;/ul&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;Scenario
	&lt;ul&gt;
		&lt;li&gt;Given a result count is NOT estimated (current understanding is that result counts under 1,000 are exact)&lt;/li&gt;
		&lt;li&gt;When displayed in FOLIO&lt;/li&gt;
		&lt;li&gt;Then:
		&lt;ul&gt;
			&lt;li&gt;Result count should NOT be preceded by &quot;about&quot;&lt;/li&gt;
			&lt;li&gt;Result count should NOT be rounded&lt;/li&gt;
			&lt;li&gt;For example:
			&lt;ul&gt;
				&lt;li&gt;Exact result count from Postgres = 845&lt;/li&gt;
				&lt;li&gt;Displays in FOLIO as &quot;845 records found&quot;&lt;/li&gt;
			&lt;/ul&gt;
			&lt;/li&gt;
		&lt;/ul&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;b&gt;Story outline:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Upgrade Core modules using SearchAnndSortQuery to latest RMB&lt;/li&gt;
	&lt;li&gt;Display rounded result counts in SearchAndSortQuery&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;Background Discussion:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Three rounding proposals were considered&lt;/li&gt;
	&lt;li&gt;Option B, &quot;Round to first digit&quot; was selected&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;Details on Rounding Options Considered:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;3 rounding proposals are in the comments of MODINVSTOR-468:&lt;/p&gt;

&lt;p&gt;A) Round to magnitude:&lt;/p&gt;
&lt;div class=&apos;table-wrap&apos;&gt;
&lt;table class=&apos;confluenceTable&apos;&gt;&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 10,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (3,000-29,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 100,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (30,000-299,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 1,000,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (300,000-2,999,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 10,000,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (3,000,000-29,999,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;


&lt;p&gt;B) Round to first digit:&lt;/p&gt;
&lt;div class=&apos;table-wrap&apos;&gt;
&lt;table class=&apos;confluenceTable&apos;&gt;&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 2,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (1,500-2,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 3,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (2,500-3,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 4,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (3,500-4,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 5,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (4,500-5,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 6,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (5,500-6,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 7,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (6,500-7,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 8,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (7,500-8,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 9,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (8,500-9,499) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 10,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (9,500-14,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 20,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (15,000-24,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 30,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (25,000-34,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;


&lt;p&gt;C) Round first digit to 1, 2 or 5:&lt;/p&gt;
&lt;div class=&apos;table-wrap&apos;&gt;
&lt;table class=&apos;confluenceTable&apos;&gt;&lt;tbody&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 2,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (1,500-3,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 5,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (4,000-7,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 10,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (8,000-14,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 20,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (15,000-39,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; about 50,000 &lt;/td&gt;
&lt;td class=&apos;confluenceTd&apos;&gt; (40,000-79,999) &lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;


&lt;p&gt;This issue is about deciding whether there should be a FOLIO standard for rounding, and if yes, which to choose, and whether the front-end or the back-end should round the number.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Proposed API as of July 28, 2020&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;If the back-end rounds it should also provide to original (non-rounded) estimate, for example&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
totalRecords: 1431
totalRecordsRounded: 1000
totalRecordsEstimated: &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;No rounding is needed for an exact number:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
totalRecords: 1509
totalRecordsEstimated: &lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/folio-org/raml/blob/raml1.0/schemas/resultInfo.schema&quot; class=&quot;external-link&quot; rel=&quot;nofollow noreferrer&quot;&gt;https://github.com/folio-org/raml/blob/raml1.0/schemas/resultInfo.schema&lt;/a&gt; needs to be extended accordingly.&lt;/p&gt;</description>
                <environment></environment>
        <key id="11677">UXPROD-2695</key>
            <summary>Display Rounded Result Counts in Apps Using SearchAndSort (Inventory and Requests)</summary>
                <type id="10002" iconUrl="https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10322?size=medium">New Feature</type>
                                            <priority id="10005" iconUrl="https://dev.folio.org/assets/jira-priority/tbd.svg">TBD</priority>
                        <status id="6" iconUrl="https://folio-org.atlassian.net/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="green"/>
                                    <resolution id="10000">Won&apos;t Do</resolution>
                                                        <assignee accountid="5af5ed55244bc90a106063c7">Cate Boerema</assignee>
                                                                <reporter accountid="5af5ed55244bc90a106063c7">Cate Boerema</reporter>
                                    <labels>
                            <label>elastic-search</label>
                            <label>result-count</label>
                            <label>search</label>
                            <label>searching</label>
                    </labels>
                <created>Tue, 29 Sep 2020 11:44:19 +0000</created>
                <updated>Thu, 4 Feb 2021 12:20:54 +0000</updated>
                            <resolved>Mon, 7 Dec 2020 16:29:14 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>15</watches>
                                                                <comments>
                                                            <comment id="17527" author="5af5ed55244bc90a106063c7" created="Wed, 30 Sep 2020 10:36:44 +0000"  >&lt;p&gt;Making an exception and carrying over rankings when splitting this feature from 
    &lt;span class=&quot;jira-issue-macro resolved&quot; data-jira-key=&quot;UXPROD-2623&quot; &gt;
                &lt;a href=&quot;https://folio-org.atlassian.net/browse/UXPROD-2623&quot; class=&quot;jira-issue-macro-key issue-link&quot;  title=&quot;Wait for POC of Elastic Search - Round estimated search result hit count (totalRecords)&quot; &gt;
            &lt;img class=&quot;icon&quot; src=&quot;https://folio-org.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10322?size=medium&quot; /&gt;
            UXPROD-2623
        &lt;/a&gt;
                                                    &lt;span class=&quot;aui-lozenge aui-lozenge-subtle aui-lozenge-success jira-macro-single-issue-export-pdf&quot;&gt;Closed&lt;/span&gt;
            &lt;/span&gt;
, as that is really an NFR which supports this feature.  Hopefully that&apos;s okay with folks.&lt;/p&gt;</comment>
                                                            <comment id="17528" author="5af5ed55244bc90a106063c7" created="Wed, 30 Sep 2020 10:38:10 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=615afd1cd9820f0070a09ef0&quot; class=&quot;user-hover&quot; rel=&quot;615afd1cd9820f0070a09ef0&quot; data-account-id=&quot;615afd1cd9820f0070a09ef0&quot; accountid=&quot;615afd1cd9820f0070a09ef0&quot; rel=&quot;noreferrer&quot;&gt;Zak Burke&lt;/a&gt; and &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3A89dc6567-baed-429c-bebb-dfcc7e5dcc50&quot; class=&quot;user-hover&quot; rel=&quot;557058:89dc6567-baed-429c-bebb-dfcc7e5dcc50&quot; data-account-id=&quot;557058:89dc6567-baed-429c-bebb-dfcc7e5dcc50&quot; accountid=&quot;557058:89dc6567-baed-429c-bebb-dfcc7e5dcc50&quot; rel=&quot;noreferrer&quot;&gt;Bohdan Suprun&lt;/a&gt; could you please provide high-level estimates for this feature?  If you think more stories are needed than what I have listed in the &quot;story outline&quot;, please let me know.&lt;/p&gt;</comment>
                                                            <comment id="17529" author="557058:89dc6567-baed-429c-bebb-dfcc7e5dcc50" created="Wed, 30 Sep 2020 11:04:49 +0000"  >&lt;p&gt;&lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=5af5ed55244bc90a106063c7&quot; class=&quot;user-hover&quot; rel=&quot;5af5ed55244bc90a106063c7&quot; data-account-id=&quot;5af5ed55244bc90a106063c7&quot; accountid=&quot;5af5ed55244bc90a106063c7&quot; rel=&quot;noreferrer&quot;&gt;Cate Boerema&lt;/a&gt;,&lt;/p&gt;

&lt;p&gt;It is 3 days, all the logic will be part of RMB, Core Functional will have to update modules to proper version of RMB and update versions of the API. &lt;br/&gt;
Note: Requests and inventory are served by separate backend modules, so we have to migrate two modules here.&lt;/p&gt;</comment>
                                                            <comment id="17530" author="5af5ed55244bc90a106063c7" created="Mon, 7 Dec 2020 16:29:14 +0000"  >&lt;p&gt;Closing as Won&apos;t Do because Elastic search should offer exact hit counts, thus obviating this issue&lt;/p&gt;

&lt;p&gt;FYI &lt;a href=&quot;https://folio-org.atlassian.net/secure/ViewProfile.jspa?accountId=557058%3Af80403de-e149-421e-8750-af45c853402f&quot; class=&quot;user-hover&quot; rel=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; data-account-id=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; accountid=&quot;557058:f80403de-e149-421e-8750-af45c853402f&quot; rel=&quot;noreferrer&quot;&gt;Charlotte Whitt&lt;/a&gt; &lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10000">
                    <name>Blocks</name>
                                                                <inwardlinks description="is blocked by">
                                        <issuelink>
            <issuekey id="11469">UXPROD-2623</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10001">
                    <name>Cloners</name>
                                                                <inwardlinks description="is cloned by">
                                        <issuelink>
            <issuekey id="11653">UXPROD-2702</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="10875" name="Ska&#776;rmavbild 2020-08-17 kl. 15.55.00.png" size="20936" author="5af5ed55244bc90a106063c7" created="Tue, 29 Sep 2020 11:44:20 +0000"/>
                            <attachment id="10876" name="total-complete-only.txt" size="4996" author="5af5ed55244bc90a106063c7" created="Tue, 29 Sep 2020 11:44:20 +0000"/>
                            <attachment id="10877" name="total-core.txt" size="9868" author="5af5ed55244bc90a106063c7" created="Tue, 29 Sep 2020 11:44:20 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10053" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Back End Estimate</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10120"><![CDATA[Small < 3 days]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10054" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Back End Estimator</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>557058:89dc6567-baed-429c-bebb-dfcc7e5dcc50</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10000" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarycf">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10057" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Development Team</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10171"><![CDATA[Prokopovych]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>Estimation Notes and Assumptions</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>BE: All the logic is handled by RMB, CF team will only migrate to the proper version of the RMB and update interface versions.&lt;br/&gt;
&lt;br/&gt;
FE: I am hopeful that this will simply be a matter of reading one or two new properties in the result set and changing the wording in the translation but I&amp;#39;m not sure how easy/onerous it will be to thread a new isEstimate property all the up through all the layers or if we simply apply that logic at the very top layer based on the size of the record set :/</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10050" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Front End Estimate</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10096"><![CDATA[Small < 3 days]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10051" key="com.atlassian.jira.plugin.system.customfieldtypes:userpicker">
                        <customfieldname>Front End Estimator</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>615afd1cd9820f0070a09ef0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10063" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>PO Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>97.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10064" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
                        <customfieldname>PO Ranking Note</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2020-10-05: Setting high PO rank, as this is necessary to complete the work Core Platform has started in &lt;a href=&quot;https://folio-org.atlassian.net/browse/UXPROD-2623&quot; title=&quot;Wait for POC of Elastic Search - Round estimated search result hit count (totalRecords)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;UXPROD-2623&quot;&gt;&lt;strike&gt;UXPROD-2623&lt;/strike&gt;&lt;/a&gt;</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_10019" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i01r7j:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10071" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Rank: 5Colleges (Full Jul 2021)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10224"><![CDATA[R2]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10068" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Rank: Chicago (MVP Sum 2020)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10209"><![CDATA[R2]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10069" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Rank: Cornell (Full Sum 2021)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10213"><![CDATA[R1]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10074" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Rank: GBV (MVP Sum 2020)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10240"><![CDATA[R3]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10089" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Rank: TAMU (MVP Jan 2021)</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10315"><![CDATA[R2]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10020" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10024" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>[CHART] Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 30 Sep 2020 11:04:49 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10025" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>[CHART] Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>