<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:47:01 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 append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-18227] Document Validation</title>
                <link>https://jira.mongodb.org/browse/SERVER-18227</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;This will add the ability for users to configure a match expression on collections that all new&lt;br/&gt;
documents and updates to existing documents must match. An attempt to create a document that doesn&apos;t&lt;br/&gt;
match the validation will fail with error code 121 (DocumentValidationFailure).&lt;/p&gt;

&lt;p&gt;Validators can be set by passing the &apos;validator&apos; option to the &apos;create&apos; command. They can also be&lt;br/&gt;
changed or added by passing a &apos;validator&apos; option to the &apos;collMod&apos; command. Passing&lt;br/&gt;
validator: {}  (a query that matches all documents) removes the validator from a collection. When a&lt;br/&gt;
validator is set on a collection we only validate new objects, not existing objects.&lt;/p&gt;

&lt;p&gt;The following commands will support a new flag &apos;bypassDocumentValidation&apos; which allows opting out of&lt;br/&gt;
validation on a per-operation basis, for example when restoring potentially invalid data from a&lt;br/&gt;
backup. This will require a new BypassDocumentValidation permission which is granted to the built-in&lt;br/&gt;
roles &apos;restore&apos; and &apos;dbadmin&apos;.&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;applyOps&lt;/li&gt;
	&lt;li&gt;clone&lt;/li&gt;
	&lt;li&gt;cloneCollection&lt;/li&gt;
	&lt;li&gt;copyDb&lt;/li&gt;
	&lt;li&gt;findAndModify&lt;/li&gt;
	&lt;li&gt;mapReduce&lt;/li&gt;
	&lt;li&gt;insert (only as command)&lt;/li&gt;
	&lt;li&gt;update (only as command)&lt;/li&gt;
	&lt;li&gt;aggregate (for $out)&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
        <key id="200631">SERVER-18227</key>
            <summary>Document Validation</summary>
                <type id="3" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14718&amp;avatarType=issuetype">Task</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/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="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="mathias@mongodb.com">Mathias Stearn</assignee>
                                    <reporter username="ian@mongodb.com">Ian Whalen</reporter>
                        <labels>
                    </labels>
                <created>Mon, 27 Apr 2015 20:59:34 +0000</created>
                <updated>Wed, 28 Oct 2015 04:32:45 +0000</updated>
                            <resolved>Fri, 15 May 2015 22:17:58 +0000</resolved>
                                                    <fixVersion>3.1.3</fixVersion>
                                    <component>Storage</component>
                                        <votes>0</votes>
                                    <watches>14</watches>
                                                                                                                <comments>
                            <comment id="926248" author="xgen-internal-githook" created="Thu, 28 May 2015 17:36:30 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;mgrundy&apos;, u&apos;name&apos;: u&apos;Mike Grundy&apos;, u&apos;email&apos;: u&apos;michael.grundy@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Document validation tests&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/814125d3b17017224c2e17c8cee778184b8af7a6&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/814125d3b17017224c2e17c8cee778184b8af7a6&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="915776" author="redbeard0531" created="Fri, 15 May 2015 22:17:58 +0000"  >&lt;p&gt;The only backward breaking change is that we now preserve collection options&lt;br/&gt;
when creating a new collection based on an existing one. The most visible&lt;br/&gt;
impact of this is that M/R and agg $out collections preserve the cappedness of&lt;br/&gt;
existing targets.&lt;/p&gt;

&lt;p&gt;Drivers need to add support for the new &apos;bypassDocumentValidation&apos; to the&lt;br/&gt;
following commands:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;applyOps&lt;/li&gt;
	&lt;li&gt;clone&lt;/li&gt;
	&lt;li&gt;cloneCollection&lt;/li&gt;
	&lt;li&gt;copyDb&lt;/li&gt;
	&lt;li&gt;findAndModify&lt;/li&gt;
	&lt;li&gt;mapReduce&lt;/li&gt;
	&lt;li&gt;insert (only as command)&lt;/li&gt;
	&lt;li&gt;update (only as command)&lt;/li&gt;
	&lt;li&gt;aggregate (for $out)&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Drivers also need to support the new &apos;validator&apos; option to createCollection and collMod.&lt;/p&gt;

&lt;p&gt;Drivers may also want to provide special error handling (distinct exception, etc) for error code 121 (DocumentValidationFailure). This should treated probably be similarly to dup-key errors.&lt;/p&gt;</comment>
                            <comment id="915761" author="xgen-internal-githook" created="Fri, 15 May 2015 22:06:25 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Fix minor typos&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/a623935ccde96bbe77c893111b983e433091e662&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/a623935ccde96bbe77c893111b983e433091e662&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="915760" author="xgen-internal-githook" created="Fri, 15 May 2015 22:06:24 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Add bypassDocumentValidation support to applyOps&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/4f96c2817ac72f6d80458137acd8a90b5178e00a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/4f96c2817ac72f6d80458137acd8a90b5178e00a&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="914736" author="xgen-internal-githook" created="Thu, 14 May 2015 23:04:07 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Add bypassDocumentValidation option to commands that need it&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/463d3343d559590d60cfd5c48ac98ad675d5390e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/463d3343d559590d60cfd5c48ac98ad675d5390e&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="914735" author="xgen-internal-githook" created="Thu, 14 May 2015 23:04:06 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Propagate all options when creating collections based on others&lt;/p&gt;

&lt;p&gt;In addition to the primary goal of propagating the validator, this will also&lt;br/&gt;
propagate things like storage-engine specific options and capped settings.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/22de12dd4ac510cd2a37b643eb528673f651e21b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/22de12dd4ac510cd2a37b643eb528673f651e21b&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="914734" author="xgen-internal-githook" created="Thu, 14 May 2015 23:04:05 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Correctly parse collection options in RS rollback of collmod&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/b0f3a43bf7f9b4e1bd48c5b823ebe2d5e8fa9055&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/b0f3a43bf7f9b4e1bd48c5b823ebe2d5e8fa9055&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="908961" author="xgen-internal-githook" created="Fri, 8 May 2015 18:28:02 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Implement RS rollback for collmod of flags and validator&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/c7ce2e2c56c5d39530456fbbb0554517afe9ab14&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/c7ce2e2c56c5d39530456fbbb0554517afe9ab14&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="908960" author="xgen-internal-githook" created="Fri, 8 May 2015 18:28:01 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Ban setting a document validator on system collections&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/25402fd25514b319170ee822f1a630ed26fdf766&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/25402fd25514b319170ee822f1a630ed26fdf766&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="908959" author="xgen-internal-githook" created="Fri, 8 May 2015 18:27:59 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Add a mechanism to disable document validation and start using it&lt;/p&gt;

&lt;p&gt;This does not necessarily cover all places that need to disable validation.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/c5f317f59e41caffcd3972bc741abaa649229a5b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/c5f317f59e41caffcd3972bc741abaa649229a5b&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="908958" author="xgen-internal-githook" created="Fri, 8 May 2015 18:27:58 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Initial part of document validation&lt;/p&gt;

&lt;p&gt;This covers setting and changing the validator as well as enforcing it for&lt;br/&gt;
insert and update.&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/849b8f436a5178c5be6afc2a49e9a4d1ecf5d92b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/849b8f436a5178c5be6afc2a49e9a4d1ecf5d92b&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="904858" author="xgen-internal-githook" created="Mon, 4 May 2015 23:30:39 +0000"  >&lt;p&gt;Author:&lt;/p&gt;
{u&apos;username&apos;: u&apos;RedBeard0531&apos;, u&apos;name&apos;: u&apos;Mathias Stearn&apos;, u&apos;email&apos;: u&apos;mathias@10gen.com&apos;}
&lt;p&gt;Message: &lt;a href=&quot;https://jira.mongodb.org/browse/SERVER-18227&quot; title=&quot;Document Validation&quot; class=&quot;issue-link&quot; data-issue-key=&quot;SERVER-18227&quot;&gt;&lt;del&gt;SERVER-18227&lt;/del&gt;&lt;/a&gt; Make OperationContext decorable&lt;br/&gt;
Branch: master&lt;br/&gt;
&lt;a href=&quot;https://github.com/mongodb/mongo/commit/522d8fbdbba5389564e4f014b5011e530fc46de0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/mongodb/mongo/commit/522d8fbdbba5389564e4f014b5011e530fc46de0&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10320">
                    <name>Documented</name>
                                                                <inwardlinks description="is documented by">
                                        <issuelink>
            <issuekey id="223862">DOCS-5961</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10012">
                    <name>Related</name>
                                            <outwardlinks description="related to">
                                        <issuelink>
            <issuekey id="233146">SERVER-20783</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="224574">DRIVERS-250</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>12.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18555" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname># of Sprints</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1.0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10011" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Backwards Compatibility</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10011"><![CDATA[Minor Change]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 27 Apr 2015 21:57:58 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        8 years, 37 weeks, 6 days ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10857" key="com.pyxis.greenhopper.jira:gh-epic-link">
                        <customfieldname>Epic Link</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>PM-133</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>dan@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            8 years, 37 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>xgen-internal-githook</customfieldvalue>
            <customfieldvalue>ian@mongodb.com</customfieldvalue>
            <customfieldvalue>mathias@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrl7av:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hs8tf3:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_10557" key="com.pyxis.greenhopper.jira:gh-sprint">
                        <customfieldname>Sprint</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue id="490">Quint Iteration 3</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrjdtr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>